$(function(){
	var time= (new Date());
	
	url = "souba.php?fromarea=1&yearmonth=" + time.getFullYear() + "," + (time.getMonth() + 2) + "&room_type=3&tyme=" + time.getTime();
	$("#soubacontent").data("file", url);
	$("#soubacontent").load($("#soubacontent").data("file")+" #content");
});

function chengeSouba() {
	var time= (new Date());
	
	$("#soubacontent").html('<p class="loading"><img src="img/loading.gif" alt="" /></p>');
	fromarea = document.form1.fromarea.value;
	yearmonth = document.form1.yearmonth.value;
	room_type = document.form1.room_type.value;
	url = "souba.php?fromarea=" + fromarea + "&yearmonth=" + yearmonth + "&room_type=" + room_type + "&time=" + time.getTime();

	$("#soubacontent").data("file", url);
	$("#soubacontent").load($("#soubacontent").data("file")+" #content");
	return false;
}