//by v1r0x (v1ru53x@gmail.com)

$(document).ready(function() {
  
	//ustawienie odznaczenia wybranego dialu
	if(typeof(men_hl)=='number') {
		$(".men:eq("+(men_hl-1)+")").attr("src", "images/menu"+men_hl+"_hl.jpg"); 
	}
   $(".men").each(function(i){
		i=i+1;
		$(this).mouseover(function(event) {
				$(this).attr("src", "images/menu"+i+"_hl.jpg"); 
		});	
		$(this).mouseout(function(event) {
				//nie pozwala na odznaczenie wybranego dzialu
				if(typeof(men_hl)=='number') { if(men_hl != i) {
					$(this).attr("src", "images/menu"+i+".jpg");
				}}
		});		
   });	
   
   
   $(function() {
	$('.wnzdj a').lightBox();
	});
   
});

