function RandomizeBodyBG() {
	var img = new Array(
		'agra^#04352f^Taj Mahal, Agra^http://www.paryatak.com/india-city/agra/index.html^It is the Symbol of Love & one of the wonders of the world.',
		'shimla^#194e84^Hills of Shimla^http://www.paryatak.com/india-city/shimla/index.html^Beautiful hill station in the lap of nature.',
		'goa^#007bbf^Beaches in Goa^http://www.paryatak.com/india-city/goa/index.html^The coastal paradise Goa is popular for its sun kissed sandy beaches, easygoing life style, fenni and various fairs and festivals.',
		'delhi^#2c5700^Red Fort, New Delhi^http://www.paryatak.com/india-city/delhi/index.html^Red Fort, the very high level of art form and ornamental work.',
		'konark^#7a6e3c^Sun Temple, Konark^http://www.paryatak.com/india-city/konark/index.html^The Konark Sun Temple is a 13th-century Hindu temple dedicated to the sun god.',
		'jaipur^#cc3333^Hawa Mahal, Jaipur^http://www.paryatak.com/india-city/jaipur/index.html^Built in 1799 by Rajput Sawai Pratap Singh'
	);
	var imgVal = Math.floor(Math.random()* img.length);
	myArray = img[imgVal].split("^");  
    //alert(img.length);
	jQuery('#bodyImgChk').attr('style','background-color:'+myArray[1]);
	jQuery('#citiImg').attr('src','/images/top/'+myArray[0]+'.jpg');
	jQuery('#placeLabel').empty().html(myArray[2]);
	jQuery('#changeUrl, #changeImgUrl, #changeTxtUrl').attr('href', myArray[3]);
	jQuery('#citiImg, #changeUrl, #changeImgUrl, #changeTxtUrl').attr('title', myArray[4]);
	jQuery('#gbuzz').attr('href', 'http://www.google.com/buzz/post?url='+$(location).attr('href'));
};
$(document).ready(function(){
	$(document).pngFix(); 
	RandomizeBodyBG();
});
