$(document).ready(function(){
	// book-it validation
	$("#book-it").RSV({
		displayType: "display-html",
		errorTextIntro: "<h3>Please fix the following errors.</h3>",
		errorFieldClass: "error",
		errorHTMLItemBullet: "&ordm; ",
		errorTargetElementId: "errors",
		rules: [
			"required,name,Please enter your first and last name.",
			"required,email,Please enter your email address.",
			"required,phone,Please enter a phone number.",
			"valid_email,email,Please enter a valid email address."
		]
  	});

	//Home Slideshow
	$('#slideshow').cycle({ 
	    fx:      'fade',
		pause:    1, 
	    speed:    1200, 
	    timeout:  8000 
	});

	//FAQs
	$('dl.faq dd').hide().prepend('<strong>A:</strong> ');
	$('dl.faq dt').wrapInner('<a href="#" onclick="return false;"></a>').prepend('<strong>Q:</strong> ');
	$('dl.faq dt').click(function () {
		$(this).next('dd').slideToggle("fast", "easeInOutQuad");
	});
	
	$('#enews-signup :text').focus(function() {
		// See if the input field is the default
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	})
	.blur(function() {
		if ($(this).val() == '') {
			$(this).val($(this).attr('title'));
		}
	});
	
	$(".cal-cell a").jHelperTip({
		ttC: "#cal-tip",
		trigger: "hover",
		source: "ajax",
		type: "GET",
		loadingImg: '/images/site/ajax-loader.gif',
		autoClose: true,
		attrName: "rel"
	});
});//end document.ready
