preload = new Image();
images = new Array();
images[0] = "grafika/menu_nowe_h.png";
images[1] = "grafika/menu_uzywane_h.png";
images[2] = "grafika/menu_oferty_h.png";
images[3] = "grafika/menu_czesci_h.png";
images[4] = "grafika/menu_uslugi_h.png";
images[5] = "grafika/menu_onas_h.png";
for(i=0; i<=images.length; i++) preload.src = images[i];

function pokazSub() { $("ul", this).slideDown("fast"); }
function ukryjSub() { $("ul", this).slideUp("fast"); }

 
$(document).ready ( function()
{

	$(".menu_poz img").hover(function() { this.src = this.src.replace(".png","_h.png") },
								  function() { this.src = this.src.replace("_h.png",".png") }
								  );

								  
	 $(".menu_poz_cont li").click(function() { window.location = $("a", this).attr("href"); });
								  
	var hover = {sensitivity: 1, interval: 80, over: pokazSub, out: ukryjSub, timeout: 200 };
	$(".menu_poz_cont").hoverIntent( hover );
});
