jQuery(document.body).ready(function(){ 
	var file_html=$("#r_b_ads").html();
	var cflag=getCookie('myefox');
	//alert(document.cookie);
    if (cflag=='1') {	
	  }else{
    $.messager.lays(230, 235); // the ad's w|h will be setted in here
    $.messager.anim('fade', 1000);
    $.messager.show("Annonce", file_html,20000); //show time
		var cookie_flag="myefox=1";
	document.cookie=cookie_flag;
 	}

function getCookie(objName){//get the cookie value
    var arrStr = document.cookie.split("; ");
    for(var i = 0;i < arrStr.length;i ++){
     var temp = arrStr[i].split("=");
     if(temp[0] == objName) return unescape(temp[1]);
    }
   }
});
