
$(document).ready(function(){
	
	// cycle through clients
	$('#client1').cycle({ 
    fx:     'scrollDown', 
    random:  1,
    timeout:  2000  
	});
	$('#client2').cycle({ 
	    fx:     'scrollDown', 
	    random:  1,
	    timeout:  2000  
	});
	$('#client3').cycle({ 
	    fx:     'scrollDown', 
	    random:  1,
	    timeout:  2000  
	});
	$('#client4').cycle({ 
	   	fx:     'scrollDown', 
	    random:  1,
	    timeout:  2000  
	});

	
	// nav menu hover function
	$("img.navButtonOff").hover(
		function() {
		$(this).stop().animate({"opacity": "0"}, 'fast');
		},
		function() {
		$(this).stop().animate({"opacity": "1"}, 'fast');
		}
	);
	
	
	// template code
	 $('#quickContactForm').ajaxForm(function(data) {
		 if (data==1){
			 $('#success').fadeIn("slow");
			 $('#bademail').fadeOut("slow");
			 $('#badserver').fadeOut("slow");
			 $('#contact').resetForm();
			 }
		 else if (data==2){
				 $('#badserver').fadeIn("slow");
			  }
		 else if (data==3)
			{
			 $('#bademail').fadeIn("slow");
					}
					});
});

function goToByScroll(id){
   $('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}


