// JavaScript Document


jQuery(document).ready(function() {
	
	
	
$(".buttons a").hover(
						   
	   function () {
      $(this).find(".bgspan").stop().animate({"opacity": "1"}, "slow");
	  
	  
	  
						   },
		function () {
      $(this).find(".bgspan").stop().animate({"opacity": "0"}, "slow");
	   
						   }				   
						   
    );
	
	
								
$("#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;
      }	  
			   
				   
	});
	
		$('#slides').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 6000,
	random:1

	});



		$('#testimonialfade').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 6000,
	random:1,
	pause: 1,
	containerResize:0

	});


$('#vidslid').cycle({ 
    fx:     'scrollLeft', 
    speed:  'slow', 
    timeout: 0,
	next:   '#previous', 
    prev:   '#next'



	});
	
$('.lightbox').lightbox();
  });


