function sml_preload_dislpay(oCallback) {

	if (document.getElementById('sml_lbc_place')!='undefined') {

			var oHead = document.getElementsByTagName('head')[0]; 
			var oScript = document.createElement('script');
			oScript.type = 'text/javascript'; 
			oScript.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js';
		 
			oScript.onload = oCallback;
		 
			oScript.onreadystatechange = function() {
		 
			if (this.readyState == 'loaded' || this.readyState == 'complete'){	 
				$.ajax({
					type: "GET",
					url: "http://showmelocal.net/sml_rl_ads/adserver.aspx",	
					//url: "http://localhost/sml_premium_ads/sml_rl_ads/adserver.aspx",	
					data: {s: sml_rl_state, c: sml_rl_city, q: sml_rl_query, style: sml_rl_style, dc: sml_rl_count, r: sml_rl_url, ch: sml_rl_channel},
					dataType: "script"

					});
		
			}
		 
		}
		oHead.appendChild(oScript); 
 }
}
	
function display_ads_js(){
 
	$.ajax({
	type: "GET",
	url: "http://showmelocal.net/sml_rl_ads/adserver.aspx",	
	//url: "http://localhost/sml_premium_ads/sml_rl_ads/adserver.aspx",	
	data: {s: sml_rl_state, c: sml_rl_city, q: sml_rl_query, style: sml_rl_style, dc: sml_rl_count, r: sml_rl_url, ch: sml_rl_channel},
	dataType: "script"

	});

	
}
sml_preload_dislpay(display_ads_js);

