$(document).ready(function(){
	// Loads, but caches the data
	//$("#ticker marquee").load("/ajax_ticker_tape.php").attr("scrollamount",2);	
	
	 $.ajax({
		type: "GET",
		url: "/ajax_ticker_tape.php",
		cache: false,
		success: function(msg){
     	$("#ticker marquee").html(msg).attr("scrollamount",2);	
   		}
	});
	
	$("#ticker marquee").hover(function(){
		$(this).attr("scrollamount",1);										
	},function(){
		$(this).attr("scrollamount",2);
	});
});