jQuery(document).ready(function(){
	jQuery('#toggle').click(function(){
		jQuery('#top-panel').slideToggle("slow");
	});
	
	jQuery('.price-tr').bind("mouseover",function(){jQuery(this).css("backgroundColor","#b1eb76")});
	jQuery('.price-tr').bind("mouseout",function(){jQuery(this).css("backgroundColor","white")});
});
