

$(document).ready(function() {


	//convert richtext popup full size images to fancybox images
	$(".rightContent img").each(function(){
		if(!$(this).parent().is("a"))
			$(this).wrap("<a class='single_image' href='" + $(this).attr("src") + "'></a>");
	});
	//end convert richtext popup full size images to fancybox images
	
	//convert richtext popup thumb images to fancybox images
	$(".rightContent a").each(function(){
		var href = $(this).attr("href");
		if(href != undefined){
			var index = href.indexOf("viewImage");
			if(index > -1){
				href = href.replace("javascript:viewImage('", "");
				href = href.replace("')","");
				$(this).attr("href", href);
				$(this).addClass("single_image"); 
			}
		}
	});
	$("#getDirections").formfocus({
            focus : true,
            blur : true,
            keyup : true,
            label : false
        });
	$("a.single_image").fancybox();
	//end convert richtext popup images to fancybox images

	//Home Fader
	$('#features').jshowoff({ 
		controls: false,
		links: true,
		hoverPause: false,
		changeSpeed: 1200,
		speed: 6000
	});
	var parentHeight = $('#mainWrapper').height(),
    childHeight = $('#mainContent').height();
	
	if (parentHeight <= childHeight) {
    $('#mainWrapper').height(childHeight + 65);
	}
	
	$('.trigger').fancybox({
	    'onComplete'	:	function() {
		    $(".printTrigger").printHelper();
		   $('.Rsvp').fancybox({
		        'type': 'iframe',
		        width: 260,
		        height: 440
		    });
	    }
	});
});
