function sayfayukle(gelen, th, butno) {
	for (var i = 1; i<5; i++) {
		hza = document.getElementById("but"+i);
		if (i != butno) {
			hza.className = "";
		} else {
			hza.className = "secili";
		}
	}
	if (gelen != 'xx') {
		$('#sayfa').load(gelen);
	}
};
function banneryukle(gelen, th) {
	$(th).parent().find("a").removeClass("secili");
	$(th).addClass("secili");
	if (gelen != 'xx') {
		$('#banner').load(gelen);
	}
};
