$(document).ready(function() {
	
	// Locations Lightbox
	$("#locations").colorbox({width:"960px", html: '<div id="location-panel"><a href="/locations/the-belvedere-of-westlake/" id="belvedere"><span class="title">The Belvedere <br/>of Westlake</span><br/><span class="subtitle">Assisted Living &amp; Special Care</span><br/>29591 Detroit Rd.<br/>Westlake, OH 44145</a><a href="/locations/rae-ann-geneva/" id="geneva"><span class="title">Rae-Ann Geneva</span><br/><span class="subtitle">Skilled Nursing &amp;<br/>Rehabilitation</span><br/>839 West Main St.<br/>Geneva, OH 44041</a><a href="/locations/rae-ann-suburban/" id="suburban"><span class="title">Rae-Ann Suburban</span><br/><span class="subtitle">Skilled Nursing &amp; Orthopedic<br/>Rehabilitation/Wound Care</span><br/>29505 Detroit Rd.<br/>Westlake, OH 44145</a><a href="/locations/rae-ann-west-park/" id="west-park"><span class="title">Rae-Ann West Park</span><br/><span class="subtitle">Skilled Nursing &amp;<br/>Post-Acute Care/Rehab</span><br/>4650 Rocky River Dr.<br/>Cleveland, OH 44135</a><a href="/locations/rae-ann-westlake/" id="westlake"><span class="title">Rae-Ann Westlake</span><br/><span class="subtitle">Skilled Nursing &amp;<br/>Stroke Rehabilitation</span><br/>28303 Detroit Rd.<br/>Westlake, OH 44145</a><a href="/newsletter/" id="newsletter"><span class="title">Rae-Ann Newsletter</span><br/><span class="subtitle">Click Here to View<br/>Our Current Newsletter</span></a></div>', opacity:0.9});
	
	
	
	// General Lightbox
	$(".iframe").fancybox({
		'hideOnContentClick': false,
		'titleShow': false
	});
	
	$(".gallery-item a").fancybox({
		'hideOnContentClick': true,
		'titleShow': true
	});
	
	$(".gallery-item li:first-child").fancybox({
		'hideOnContentClick': true,
		'titleShow': false
	});
	
	// Form Validation
	if (document.getElementById('contact-form')) {
		$("#contact-form").validationEngine({
			
		});
	};
	
	// Fade
	$('.fadeThis').append('<span class="hover"></span>').each(function () {
		var $span = $('> span.hover', this).css('opacity', 0);
		$(this).hover(function () {
			$span.stop().fadeTo(300, 1);
		}, function () {
			$span.stop().fadeTo(300, 0);
		});
	});
	
	// Input value switcher
	$('#s').focus(function () {
		if ($('#s').val() == 'Search WP Testbed') {
			$('#s').val('');
			$('#s').css({'color' : '#124d7a', 'font-weight' : 'bold'}); //active
		}
	});
	
	$('#s').blur(function () {
		if ($('#s').val() == '') {
			$('#s').val('Search WP Testbed');
			$('#s').css({'color' : '#a2a2a2', 'font-weight' : 'normal'}); //inactive
		}
	});
	
	// Slideshow
	$('#slideshow').innerfade({
		animationtype: 'fade',
		speed: 1000,
		timeout: 6000
	});
	
});
