$(document).ready(function() {
    $('#menu2 div.poz').each(function(){
    	$(this).click(function(){
    		window.location.href = $(this).find('a').attr('href');
    	});
    	
    	$(this).hover(function(){
    		$(this).addClass('over');
    	},function(){
    		$(this).removeClass('over');
    	});
    });
    
     $('.imgover').each(function(){
   		$(this).attr('srcold',$(this).attr('src'));
   		
    	$(this).hover(function(){
    		$(this).attr('src',$(this).attr('srcover'));
    	},function(){
    		$(this).attr('src',$(this).attr('srcold'));
    	});      	
    });
    
});
