// JavaScript Document

//wait for the DOM to load

$(document).ready(function() {

	

	// ------------------ "FLOATER" - scroll to top link ... calls jQuery.scrollTo plugin ------------	

	$('#floater').click(function() {

		$.scrollTo("#logo_top", 800);

	});

	// ----------------------------------------- END FLOATER -----------------------------------------

	

	// ----------------------------------- FAQ Fancybox Call -----------------------------------------

	//initialize fancybox - link for our gallery in top area -------------------------------

	$("#question_link, #question_link1, #question_link2, #question_link3, .question_link").fancybox(

		{ 	'overlayShow': true,

			'overlayOpacity':0.7,

			'frameHeight':470,

			'frameWidth':630	

		}	

	);	

	

	// ----------------------------------- For Brides of Indy Fancybox Call -----------------------------------------

	//initialize fancybox - link for our gallery in top area -------------------------------

	$("#forbrides_link").fancybox(

		{ 	'overlayShow': true,

			'overlayOpacity':0.7,

			'frameHeight':470,

			'frameWidth':630	

		}	

	);	



}); // end document.ready()


// Browser compatibility alert -- tells the user that they're using an unsupported browser and that they should upgrade

$(document).ready(function() {
	
	if (jQuery.browser.mozilla) {
		if((parseInt(jQuery.browser.version) == 6) || (parseInt(jQuery.browser.version) == 5)) {
			alert("Our website requires a newer website than you have installed.  Please upgrade for the best viewing experience.");
		}
	}

});