function disableSelection(obj)
{
	if (typeof obj.onselectstart != "undefined") //IE
		obj.onselectstart = function(){return false};
	else if (typeof obj.style.MozUserSelect != "undefined") //Firefox
		obj.style.MozUserSelect = "none";
	else //digerleri
		obj.onmousedown = function(){return false};
}

preloadimages = [
				 templateimgpath + "/btnhover_back.png",
				 templateimgpath + "/btnhover_left.png",
				 templateimgpath + "/btnhover_right.png",
				 templateimgpath + "/lang_ar_hover.png",
				 templateimgpath + "/lang_en_hover.png",
				 templateimgpath + "/lang_tr_hover.png",
				 templateimgpath + "/newsbox_number_hover.gif"
				 ];

new Asset.images(preloadimages);