$(document).ready(function(){

	 $.ajax({
		type: "GET",
		url: "/ajax_marquee.php",
		cache: false,
		success: function(msg){
     	$("#MarqueeText marquee").html(msg).attr("scrollamount",2);	
   		}
	});
	
	$("#MarqueeText marquee").hover(function(){
		$(this).attr("scrollamount",1);										
	},function(){
		$(this).attr("scrollamount",2);
	});
});
