function displayFlyoutNav(){
	// IE fix for non-supported li:hover
	try{
		$('#leftNav li').has('ul').mouseover(
			function(){
				$(this).addClass('leftNavIeFix')
			}
		)
		$('#leftNav li').has('ul').mouseout(
			function(){
				$(this).removeClass('leftNavIeFix')
			}
		)
	}catch(e){}

	try{
		$('#additionalInfoNav li').has('ul').mouseover(
			function(){
				$(this).addClass('leftNavIeFix')
			}
		)
		$('#additionalInfoNav li').has('ul').mouseout(
			function(){
				$(this).removeClass('leftNavIeFix')
			}
		)
	}catch(e){}
}

function cycleContent(){
	try{
		if($('#featureSectionsSlideShow').length > 0){
			$('#featureSectionsSlideShow').cycle({fx: 'fade'});
		}
	}catch(e){}
	
	try{
		if($('#customerTestimonials').length > 0){
			$('#customerTestimonials').cycle({fx: 'fade'});
		}
	}catch(e){}
}

function initMarquee(){
	try{
		if($("#marquee").length > 0){
			$("#marquee").marquee();
		}
	}catch(e){}
}
