// a simple dropdown menu when you hover over 
// "Putters" in the main navigation

$(document).ready(function() {
	
	$("#products_button").hover(function() {
		$("#products_dropdown").show('fast');
	},
	function() {
		$("#products_dropdown").hover(function() {
			$(this).css('display','block');
		},
		function() {
			$(this).hide('slow');
		});
	});
	
	$("#products_dropdown").click(function() {
		window.location = /products/;
	});

});
