// ravi added all

// cookies all functions 
function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function eraseCookie(name) {
	createCookie(name,"",-1);
}


var x = readCookie('glam20coo');
//alert(x);

if(x == null){
	x =0;
	createCookie('glam20coo',4,0);
	}
else if(x == 0)
		createCookie('glam20coo',4,0);
else if(x == 4)
		createCookie('glam20coo',8,0);
else if(x == 8)
		createCookie('glam20coo',0,0);



// body onload function call
	function img_load(){
	rand_no = parseInt(x);
//	alert(rand_no);
/*   Hot pics data */
		 document.images['IMG1'].src = hot_pics_src[rand_no];
		 document.images['IMG2'].src = hot_pics_src[rand_no+1];
		 document.images['IMG3'].src = hot_pics_src[rand_no+2];
		 document.images['IMG4'].src = hot_pics_src[rand_no+3];

		document.getElementById('HREF1').href = hot_pics_href[rand_no];
		document.getElementById('HREF2').href = hot_pics_href[rand_no+1];
		document.getElementById('HREF3').href = hot_pics_href[rand_no+2];
		document.getElementById('HREF4').href = hot_pics_href[rand_no+3];
/*   Hot pics data */

/*  Bikini data   */ 
		 document.images['BIKINI_IMG1'].src = bikini_pics_src[rand_no];
		 document.images['BIKINI_IMG2'].src = bikini_pics_src[rand_no+1];
		 document.images['BIKINI_IMG3'].src = bikini_pics_src[rand_no+2];


		document.getElementById('BIKINI_HREF1').href = bikini_pics_href[rand_no];
		document.getElementById('BIKINI_HREF2').href = bikini_pics_href[rand_no+1];
		document.getElementById('BIKINI_HREF3').href = bikini_pics_href[rand_no+2];

/*  Bikini data   */ 

/*  Bollywood data   */ 
		 document.images['BOLLY_IMG1'].src = bollywood_pics_src[rand_no];
		 document.images['BOLLY_IMG2'].src = bollywood_pics_src[rand_no+1];
		 document.images['BOLLY_IMG3'].src = bollywood_pics_src[rand_no+2];
		 document.images['BOLLY_IMG4'].src = bollywood_pics_src[rand_no+3];


		document.getElementById('BOLLY_HREF1').href = bollywood_pics_href[rand_no];
		document.getElementById('BOLLY_HREF2').href = bollywood_pics_href[rand_no+1];
		document.getElementById('BOLLY_HREF3').href = bollywood_pics_href[rand_no+2];
		document.getElementById('BOLLY_HREF4').href = bollywood_pics_href[rand_no+3];

/*  Bollywood data   */ 


/*  Events data   */ 
		 document.images['EVENTS_IMG1'].src = events_pics_src[rand_no];
		 document.images['EVENTS_IMG2'].src = events_pics_src[rand_no+2];
		 document.images['EVENTS_IMG3'].src = events_pics_src[rand_no+5];
		 document.images['EVENTS_IMG4'].src = events_pics_src[rand_no+7];

		document.getElementById('EVENTS_HREF1').href = events_pics_href[rand_no];
		document.getElementById('EVENTS_HREF2').href = events_pics_href[rand_no+2];
		document.getElementById('EVENTS_HREF3').href = events_pics_href[rand_no+5];
		document.getElementById('EVENTS_HREF4').href = events_pics_href[rand_no+7];

/*  Events data   */ 



/*  Hollywood data   */ 
		 document.images['HOLLY_IMG1'].src = hollywood_pics_src[rand_no];
		 document.images['HOLLY_IMG2'].src = hollywood_pics_src[rand_no+1];
		 document.images['HOLLY_IMG3'].src = hollywood_pics_src[rand_no+2];
		 document.images['HOLLY_IMG4'].src = hollywood_pics_src[rand_no+3];


		document.getElementById('HOLLY_HREF1').href = hollywood_pics_href[rand_no];
		document.getElementById('HOLLY_HREF2').href = hollywood_pics_href[rand_no+1];
		document.getElementById('HOLLY_HREF3').href = hollywood_pics_href[rand_no+2];
		document.getElementById('HOLLY_HREF4').href = hollywood_pics_href[rand_no+3];

/*  Hollywood data   */ 

/*  South data   */ 
		 document.images['SOUTH_IMG1'].src = south_pics_src[rand_no];
		 document.images['SOUTH_IMG2'].src = south_pics_src[rand_no+1];
		 document.images['SOUTH_IMG3'].src = south_pics_src[rand_no+2];


		document.getElementById('SOUTH_HREF1').href = south_pics_href[rand_no];
		document.getElementById('SOUTH_HREF2').href = south_pics_href[rand_no+1];
		document.getElementById('SOUTH_HREF3').href = south_pics_href[rand_no+2];

/*  South data   */ 

	}
// body onload function call ends








