$(document).ready(function () {
	
	
	//------------------Carusel -------------------
	$('#carousel').jcarousel({
		scroll: 1,
		auto: 10,
		wrap: 'circular'
	});


	//------------------Gellary -------------------
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	/*$('.menu li').mouseenter( function (){
		if ($(this).attr("class") == "") $(this).find("ul").slideToggle("normal");
	});
	$('.menu li').mouseleave( function (){
		if ($(this).attr("class") == "") $(this).find("ul").slideToggle("normal");
	});*/
	
	//------------------Drop menu -------------------
	$("#header ul.nav").dropmenu('sub');
		
	$('#header ul.nav li').mouseenter(function() {
		  $(this).find('a:first').addClass('active');
	 }).mouseleave(function() {
		  $(this).find('a:first').removeClass('active');
	 });
});
