// JavaScript Document
function rotateImg(ln){
	englishTips = Array ("Khafr village is located in high mountains of Zagros range, Western Iran. Dena peak with elevation 4412 m is one of the attractions of the area.","Collecting piles of rubbish from streets of Khafr village (near Semirom-Isfahan) took place on Clean Earth day celebration.","Kolah Qazi( Isfahan) is  rich in fauna and flora.","Khafr village is located in high mountains of Zagros range, Western Iran. Dena peak with elevation 4412 m is one of the attractions of the area.");
	farsiTips = Array ("روستای خفر در میان کوه های مرتفع رشته کوه زاگرس در حاشیه قلل دنا بوده و یکی از جاذبه های روستایی ایران می باشد.","مراسم روز پاکسازی با همکاری مردم محلی، انجمن طرح سرزمین، انجمن سبزیاران دنا و کانون سبز فارس در روستای خفر برگزار شد.","پارک ملی کلاه قاضی، واقع در استان اصفهان به علت وجود زیستگاه های مناسب، از حیات وحش جانوری و گیاهی غنی برخوردار است.","روستای خفر در میان کوه های مرتفع رشته کوه زاگرس در حاشیه قلل دنا بوده و یکی از جاذبه های روستایی ایران می باشد.");
	fileNum = Math.floor(Math.random( ) * 4 - 1 + 1) + 1;
	if(ln == "en"){
	document.getElementById("rotatingImage").innerHTML = "<img src=\"../images/main_rotating/" + fileNum + ".jpg\" style=\"width:250px\" alt=\"" + englishTips[fileNum - 1] + "\" /><br /><br />" + englishTips[fileNum - 1];
	}
	else if(ln == "fa"){
		document.getElementById("rotatingImage").innerHTML = "<img src=\"../images/main_rotating/" + fileNum + ".jpg\" style=\"width:250px\" alt=\"" + farsiTips[fileNum - 1] + "\" /><br /><br />" + farsiTips[fileNum - 1];
	}
}
