$(function()
{
   
   $('#menu_products').mouseover(function()
	{
		var y = $(this).offset().top + $(this).height();
		var x = $(this).offset().left;
		$('#submenu_products').css('top',y+'px').css('left',x+'px');
		$('#submenu_products').show();
	});
   
   $('#submenu_products').mouseover(function()
	  {
			$(this).show();	  
	  });
   
   $('#menu_products').mouseout(function()
	{
		$('#submenu_products').hide();
	});
   
   $('#submenu_products').mouseout(function()
	  {
			$(this).hide();	  
	  });
   
   $('#submenu_products ul li').click(function()
	  {
		  
			var id = $(this).attr('id').replace(/sub_prod_/g,'');
			id = parseInt(id);
			lang = getLang();
			window.location.href = 'index.php?path=products|productdetail&id='+id+'&lang='+lang;
	  });
   
   
});

function getLang()
{
	if($.getCookie('language'))
		return $.getCookie('language');
	
	if($.getUrlParameter('lang'))
		return $.getUrlParameter('lang');
		
	return 'de';
}
