$(document).ready(function(){
	$("#contactForm").validate();
	$("#commentForm").validate();
	$("#emailSignup").validate();
	$("#advertisingForm").validate();
	$('#sideTabs').tabs({ fxFade: true, fxSpeed: 'slow' });
	$(".carousel").jCarouselLite({
		auto: 1000,
		speed: 1000
	});
	$('.topOfPage').click(function () {
		$.scrollTo('.header', 600);
		return false;
	});
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'40px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
	});
});
$(document).ready(function(){
	$('a.help').hover(function() {
	$('.helpBox').fadeIn('slow');
	  return false;
	});
});