jQuery(function(){
	var url = "";
	var currentHref = window.location.href;
	if( currentHref.indexOf('soleonline') > 0 ){
		url = "http://www.soleonline.com/stats/tsr.html";
	} else { 
		url = "http://www.yoursole.com/stats/tsr.html";
	}
	$.get(url, function(data, textStatus){
    $('<div id="ticker-v2" class="span-24 last"></div>').insertAfter('#home-feature');
		$("#ticker-v2").append("<div id=\"ticker-wrap\"></div>");
		$("#ticker-wrap").append("<div id=\"ticker-contents\"></div>");
		$("#ticker-contents").append("<div id=\"stat-wrapper\"></div>");
	  $("#stat-wrapper").append(data).find("ul").newsticker(6000);
		$('#ticker-v2').slideDown(500);	
	});
});
