// JavaScript Document


jQuery(document).ready(function() {
								
$('#slides').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    fx:    'fade', 
    speed:  2500,
	random: 1,
	pause:1,
	requeueOnImageNotLoaded:1,
	cleartypeNoBg:   true

	});
	
	
$languagecoockie = $.cookie("language");




if($languagecoockie != "selected"){
$('#languageselectormain').fadeIn();
};



$('.mainnav li').hover(
  function () {
	  
     $(this).find("ul").animate({height:'450px', paddingTop:'20px'},{queue:false,duration:400});
	 
  }, 
  function () {
    $(this).find("ul").animate({height:'0px', paddingTop:'0px'},{queue:false,duration:500});
  }
  ).stop();


$('.excursionimg a').hover(
  function () {
	  
     $(this).find(".cover").animate({height:'153px'},{queue:false,duration:400});
	 
  }, 
  function () {
    $(this).find(".cover").animate({height:'50px'},{queue:false,duration:500});
  }
  ).stop();





	
	
$("#englishflag a").click(function(){
	
	$('#languageselectormain').fadeOut();
	
	$.cookie("language", "selected");
	
			   
				   
	});
	
	
	




  });


