//JQUERY Settings

jQuery(document).ready(function(){
		
		$('#head-slideshow ul').cycle({ 
		    fx:     'fade', 
    		speed:   800, 
    		timeout: 4000, 
		    next:   '#slideshow-next', 
    		prev:   '#slideshow-prev'
		});
		
		$("a[rel^='prettyPhoto']").prettyPhoto(); 	
		
		//Menu fix for shitty IE6
		$(".nav li").hover(function(){$(this).addClass("hover");$(this).find(".dropdown").css({display:'block'});},function(){$(this).removeClass("hover");$(this).find(".dropdown").css({display:'none'});});
		$(".nav li:has(ul)").addClass("sub_menu_true");
		
		//Fake Hover/Click
		$(".head-image-slide li").hover(function(){
			$(this).addClass("fake-hover");
		},function(){
			$(this).removeClass("fake-hover");
		});
		
		$(".head-image-slide li").click(function(){
			window.location = $(this).find("a").attr("href");			
            return false;
		});
				
//kraj
});



