function refreshAd(){
	
	$("#ad_mp, #ad_mp_top").remove();
	var oDate = new Date();
	var iRand = oDate.getTime();
	
	var sAdcall = "http://oas.absoluteradio.co.uk/RealMedia/ads/adstream_sx.ads/rocknrollfootball.fantasyleague.com/"+iRand+"@Right";
	var sFrame = "<iframe src="+sAdcall+" width='300' height='250' marginwidth='0' marginheight='0' frameborder='0' framespacing='0' scrolling='no'>Iframe</iframe>";
	$("#ad_container").html("<div id='ad_mp'></div>");
    $("#ad_mp").html(sFrame);

	var sAdcallTop = "http://oas.absoluteradio.co.uk/RealMedia/ads/adstream_sx.ads/rocknrollfootball.fantasyleague.com/"+iRand+"@Top";
	var sFrameTop = "<iframe src="+sAdcallTop+" width='728' height='90' marginwidth='0' marginheight='0' frameborder='0' framespacing='0' scrolling='no'>Iframe</iframe>";
	$("#ad_container_top").html("<div id='ad_mp_top'></div>");
    $("#ad_mp_top").html(sFrameTop);
    
    var sAdcallBottom = "http://oas.absoluteradio.co.uk/RealMedia/ads/adstream_sx.ads/rocknrollfootball.fantasyleague.com/"+iRand+"@Bottom";
	var sFrameBottom = "<iframe src="+sAdcallBottom+" width='626' height='77' marginwidth='0' marginheight='0' frameborder='0' framespacing='0' scrolling='no'>Iframe</iframe>";
	$("#ad_container_bottom").html("<div id='ad_mp_bottom'></div>");
    $("#ad_mp_bottom").html(sFrameBottom);
}	
		
$(document).ready(function(){ 
	refreshAd();
});