//NAVIGATION
function mainmenu(){
$(" #nav ul ").css({display: "none"}); // Opera Fix
$(" #nav li").hover(function(){
	  
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).slideDown(100);
		$("#searchCat").hide();
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
			$("#searchCat").show();
		});

}



$(document).ready(function(){					
	mainmenu();
});



//ACCORDEON
 $().ready(function() {  
     $('.kwicks').kwicks({  
         min : 30,  
         spacing : 3,  
         isVertical : true,  
         sticky : true,  
         event : 'click'         
     });  
});
 
 
 
 
//SLIDESHOW CYCLE
$(document).ready(function() {
		$('#rotator').cycle({
		    cleartype: false,
		    speed:  800,
		    timeout:  4550,
		    pager:  '#pager',
		    random:  0
		});
	});


//PRETTYPHOTO
$(document).ready(function(){
                $("a[rel^='prettyPhoto']").prettyPhoto({
                                theme: 'light_square'
                                });
});





