	function Main_Window_Resize(){
	    jQuery('#bg_pic').remove();
		widthall = Math.ceil($(document.body).width());	
		heightall  = Math.ceil($(document.body).attr('clientHeight'));	
		bg="<img id='bg_pic' src='img/country/bg.jpg'  width='"+widthall+"px' height='"+heightall+"px'  style='z-index:0;position:absolute' />"
		$('body').append(bg);
	}
	
	
	$(document).ready(function(){
	   //Main_Window_Resize()
	})
	
	
	$(window).resize(function(){
	   
       //Main_Window_Resize()
	   if(document.getElementById('adcontent')){
	   close_ad()
	   make_ad_layout()
	   }
    });
