jQuery(document).ready(function() {

var pagetour = ["country_id=3", "country_id=666666"]; //куба
var page = location.href;

for(var i=0; i<pagetour.length; i++){
var cur = pagetour[i];

if(page.indexOf(cur)!=-1){
var pathid = cur.substring(11,cur.length);
//alert(pathid);
break;
} 
}

if(pathid) { //есть туры для страны

var tourfile = "/inc/info_"+pathid+".inc"; 
jQuery.ajax({ //грузим нужный файлик
url: tourfile,
cache: false,
success: function(html){ 
var some = "test test";
jQuery("#very_important_info").html(html).show("slow"); 
/*
jQuery
var html = "some code";
var mydiv = document.getElementbyid("very_important_info");
mydiv.innerHTML = html;
mydiv.style.display = "block";
*/
}
}); 
}

});




