
$(function(){
	$('.product_box').hover(
		function()
		{
			$('.description',this).css('background-image', 'url(/images/product_box_price_gradient_hover.png)').css('background-repeat','repeat-x');
		},
		function()
		{
			$('.description',this).css('background-image', 'url(/images/product_box_price_gradient.png)').css('background-repeat','repeat-x');
		}
	);
	
	 $('#producer').change(function()
		{
			top.location="/batten/producer/"+$(this).val();
		});
		
	 $('.submit_producer').click(function()
		{
		  var producer_id = $('#producer').val();
			top.location="/batten/producer/"+producer_id;
		});
	
	$("#more_colors_toggle").click(function(){
		$("#more_colors").slideToggle();
	});

	

});

