$(function(){
	if ($('#fadeOut').length>0){$('.textContent').hide();}
	$("#fadeOut").oneTime(2500, 'fadeOut', 
		function(event){$(this).fadeOut(1000);$('.textContent').show(); 
	});
	$("marquee").marquee({});
	//console.log($("marquee"));
	$('.popUpLinks a').click(function(){
		$(this).parent('li').parent('ul').children('li').removeClass('selected');
		$(this).parent('li').addClass('selected');
		if ($(this).hasClass('hasPopUpContent')){
			$('#popUp_'+this.href.split('#')[1]).dialog({
				autoOpen: true,
				modal:true,
				width: 650,
				height: 250,
				resizable: false,
				close:function(){$(this).dialog("destroy");}
			});
		}
		return false;
	});
});
