


$(document).ready(function(){
			
	$("#menu ul li").mouseover(function() {
		$(this).find('.znaczek').css('display','block');	
		$(this).find('.podmenu').css('display','block');
		

		elm = $(this);
		pos = $(elm).position();
		
		$(this).find('.podmenu').css('left',(pos.right) + "px");

		
		if(pos.left+$(this).find('.podmenu').width()>1000) 
		 { 
			left = 1000-pos.left-$(this).find('.podmenu').width()-40;
			$(this).find('.podmenu').css('margin-left', left+"px");
		 }			
		
		return false;
	}).mouseleave(function(){
	
		$(this).find('.znaczek').hide();
		$(this).find('.podmenu').hide();			
		$(this).find('.podmenu').hover(
		function () {
			return false;
		},function () {
			$('#menu ul li .podmenu').hide();
			$('#menu ul li .znaczek').hide();
		});					
	});	
	
});
