
$(document).ready(function() 
{
	showing=false;
	$(".mainmenu_a").mouseover( 
		    function() 
		    {		    
		    
		    	var pos = $(this).offset();		        
		    	var gid = $(this).attr("id");
		    	
		   
		    	gid = gid.replace("g","grupa");		    	
		    	$('#'+gid).css({"left": (pos.left+200-20)+"px","top": (pos.top-5)+"px"});
		    	if ($('#'+gid).height()>0) $('#'+gid).show();				    	
		    }
		);
	
	$(".layer1").mouseover( 
		    function() 
		    {
//		    	var pos = $(this).offset();
		    	showing=true;
		    	$(this).show();
		    
		    	/*var gid = $(this).attr("id");
		    	gid = gid.replace("grupa","grupa");
		    	$('#'+gid).css({"left": (pos.left+200)+"px","top": (pos.top)+"px"});
		    	$('#'+gid).show();*/		    	
		    }
	);
	
	$(".layer1").mouseout( 
		    function() 
		    {
		    	showing=false;
		    	$(this).hide();
		    }
	);
	
	$(".mainmenu_a").mouseout( 
		    function() 
		    {		    	
		    	var gid = $(this).attr("id");	
		    	gid = gid.replace("g","grupa");
		    	if (!showing) $('#'+gid).hide();
//		    	setTimeout(function() {
//		    		$('#'+gid).hide();
//		          }, 500);
		    }
	);

});
