function thank_you() {
    alert("Your message has been successfully sent! We'll be in touch soon!");
}

$(document).ready(function(){
	//Fancybox
	$('a.shadow-box').fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	300, 
		'speedOut'		:	100,
		'titleShow'		:	'true',
		'titlePosition'	:	'inside',
		'width'	:430,
		'height':242,           
	});
	
	//Contact Form Label Focus
	$('div.contact-form-inner input, div.contact-form-inner textarea, div.contact-form-inner select').focus(function () {
		 $(this).prev('label').addClass('focused');
	});
	
	$('div.contact-form-inner input, div.contact-form-inner textarea, div.contact-form-inner select').blur(function () {
		 $(this).prev('label').removeClass('focused');
	});
	
	//Fades in the contact form.
	$('a#launch-contact-form').live("click",function(e) {
		 $('div#contact-form-outer').fadeIn();
		 e.stopPropagation();
	});
	
	//Prevents the contact form from fading out when the user clicks inside of it.
	$('div#contact-form-outer').live("click",function(e) {
		 e.stopPropagation();
	});
	
	//If the user clicks outside the contact form and propagation is stopped then it will fade it out.
	$(document).click(function(e){
		if(e.isPropagationStopped()) return;  //important, check for it!
		$('div#contact-form-outer').fadeOut();
	});
	
	//Slideshow
	$('div#slideshow').cycle({timeout: 3200});
	$('div#slideshow-hp').cycle({timeout: 7000, pager:'#slideshow-nav'});
});
