$(document).ready(function() {
									   
	$('#gnav_products').bind("mouseenter", function()
	{
		$('#sub_products').fadeIn();
	});
	
	$("#sitenav").bind("mouseleave", function() 
	{
		$('#sub_products').fadeOut();
	});
});
