$(document).ready(function()
{
	/*$("li#our_products").click(function()
	{
		$("#dropdown").show();
		
	});*/
	
/*	$("li#our_products").click(function()
	{
		$("#dropdown").show(function () {
    			$("#dropdown ul").hover(function()
    			{
    				$("#dropdown").hide();
    			});
  		  });
		
	});
	*/
	//$("li.fade").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});
	
	$(document).ready(function()
	{
		$('#dropdown').hide();
		// toggles the slickbox on clicking the noted link
		$('li#our_products').click(function()
		{
			$('#dropdown').toggle();
			return false;
		});
	});
	
});
