// JavaScript Document


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

	});


$('.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();




$("#contactform").submit(function(){
							   
	if ($("#Name").val() == "") {
        $("#hideme").slideDown()
        return false;
      }
	if ($("#Email").val() == ""  || $("#Email").val().indexOf("@") == -1) {
        $("#hideme").slideDown()
        return false;
      }
	  
	if ($("#Phone").val() == "") {
        $("#hideme").slideDown()
        return false;
      }	  
			   
				   
	});




  });


