/*$(document).ready(function(){
	$('#navibartp').before('<div id="glow" class="png" style="background-image:url(/glow.png);background-position:0 0;height:123px;left:-363px;position:absolute;top:-50px;width:363px;z-index:999;"/></div><div id="background_e" style="z-index:2;background-color:yellow;height:33px;top:1px;width:100%;"></div>');

	setTimeout(function(){
		 if($.browser.msie && $.browser.version < 8)
		 {}else{
			$('#navibartp').fadeTo(600,0.8,function(){
				$(this).fadeTo(300,1,function(){
				$('#background_e').css({'background-color':'#FF00DE',top:'1px'});
				$('#navibartp').fadeTo(300,0.7);
				})
				
			});
		}
		$('#glow').animate({left:'110%'},1500,function(){
			$(this).css({display:'none'});
		});
	},2000);
});*/