jQuery(document).ready(		
function()
{
	wys = jQuery(window).height() - 224;	
	jQuery("#menu_end").css('height', wys+'px');
	jQuery("#menu_bottom").css('margin-top', wys-30+'px');
	jQuery("#kontakt").hover(
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_top_active_01.gif) no-repeat');		    	  
		      }, 
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_top_01.gif) no-repeat');		    	  
		      }
		 );	
	jQuery("#onas").hover(
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_top_active_02.gif) no-repeat');		    	  
		      }, 
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_top_02.gif) no-repeat');		    	  
		      }
		 );
	jQuery("#praca").hover(
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_top_active_03.gif) no-repeat');		    	  
		      }, 
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_top_03.gif) no-repeat');		    	  
		      }
		 );
	jQuery("#sprzedaz").hover(
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_main_active_01.gif) no-repeat');
		    	  jQuery('#sprzedaz_marker').show();
		      }, 
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_main_01.gif) no-repeat');
		    	  jQuery('#sprzedaz_marker').hide();
		      }
		 );	
	jQuery("#wynajem").hover(
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_main_active_02.gif) no-repeat');
		    	  jQuery('#wynajem_marker').show();
		      }, 
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_main_02.gif) no-repeat');
		    	  jQuery('#wynajem_marker').hide();
		      }
		 );
	jQuery("#serwis").hover(
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_main_active_03.gif) no-repeat');
		    	  jQuery('#serwis_marker').show();
		      }, 
		      function () {
		    	  jQuery(this).css('background', 'url(images/menu_main_03.gif) no-repeat');
		    	  jQuery('#serwis_marker').hide();
		      }
		 );
	/*jQuery("DIV .menu_element").hover(
		      function () {		    	  
		    	  jQuery(this).find('div:first-child').show();
		      }, 
		      function () {
		    	  jQuery(this).find('div:first-child').hide();		    	  
		      }
		 );*/
}						
);
