// -------------------------------------------------------------------------------------------------
// Set Variables for jQuery Lavalamps Plugin for Header Navigation
// -------------------------------------------------------------------------------------------------
function loadLamps(easing) {
	/*
	$("#lavalamp").lavaLamp({
		fx: "easeInOut"+easing,
		speed: 700,
		linum: 5,
		click: function() {return true;}
	});
	*/
}


// -------------------------------------------------------------------------------------------------
// Page Load Functions
// -------------------------------------------------------------------------------------------------
$(document).ready(function(){

	// -------------------------------------------------------------------------------------------------
	// Load jQuery Lavalamps Plugin for Header Navigation
	// -------------------------------------------------------------------------------------------------
	loadLamps('Cubic');

	// -------------------------------------------------------------------------------------------------
	// Load jQuery Cycle Plugin for Homepage Header Photo Shuffle
	// -------------------------------------------------------------------------------------------------
    $('#rotatepics').cycle({
		fx:     'cover',
		timeout:    6000
    });

	// -------------------------------------------------------------------------------------------------
	// Add Upgrade Message for IE6
	// -------------------------------------------------------------------------------------------------
	if(jQuery.browser.msie && jQuery.browser.version<"7.0") {
		html = '<div id="ie6upgrade">';
		html += '<p>Your web browser is out of date, and might not display our website properly.  Please choose a browser below to upgrade.</p>';
		html += '<p><a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx"><img src="/wp-content/themes/ymc/images/ie7.gif" width="158" height="50" alt="Download Internet Explorer 7" /></a>&nbsp;&nbsp;&nbsp;<a href="http://www.mozilla.com/en-US/firefox/"><img src="/wp-content/themes/ymc/images/ffx3.gif" width="158" height="50" alt="Download Mozilla Firefox 3" /></a>&nbsp;&nbsp;&nbsp;<a href="http://www.apple.com/safari/download/"><img src="/wp-content/themes/ymc/images/saf3.gif" width="158" height="50" alt="Download Apple Safari 3" /></a>&nbsp;&nbsp;&nbsp;<a href="http://www.opera.com/download/"><img src="/wp-content/themes/ymc/images/op9.gif" width="158" height="50" alt="Download Opera 9" /></a></p>';
		html += '</div>';
		$("body").prepend(html);
		$("body").css("backgroundPosition","0 105px");
	}

});