var $j = jQuery.noConflict();

function bannerFades()
{
	// header Catch My Fame  http://www.catchmyfame.com/2010/09/13/jquery-panel-gallery-2-0-released/#demo
	/*$j('#header-banner').panelGallery({
		boxSize:50,
		boxFadeDuration:500,
		boxTransitionDuration:5,
		FX: new Array('fade')
	});*/
	$j('#header-banner').cycle({delay:6000,speed:2000,pause:1});
}

function resizeBGimage()
{
	var theWindow	= $j(window),
		$jbg		= $j("#bg"),
		aspectRatio	= $jbg.width() / $jbg.height();
	
	function resizeBg()
	{
		if ( (theWindow.width() / theWindow.height()) < aspectRatio ) {
			$jbg
				.removeClass()
				.addClass('bgheight');
		} else {
			$jbg
				.removeClass()
				.addClass('bgwidth');
		}
	}
	
	theWindow.resize(function(){resizeBg();}).trigger("resize");
}

function fancybox_routines()
{
	$j("a.iframe").fancybox({
		'width'				:	850
		,'height'			:	600
		//,'overlayOpacity'	:	0.5
		//,'overlayColor'		:	'#005a9c'
		//,'opacity'			:	true
		//,'transitionIn'		:	'elastic'
		//,'transitionOut'	:	'elastic'
	});
}

$j(function()
{
	var windowLocation = window.location.href;
	
	// hide jQuery when in globalavailability popup-mode 
	if ( windowLocation.indexOf("globalavailability.com") != -1 )
	{	// globalavailability frame
		$j("body").addClass("availability");
	}
	else
	{
		resizeBGimage();
		bannerFades();
		fancybox_routines();
	}
});

