/*** Hide Stories ***/
function hideStories(){
	for(i=0; i<5;i++){
		obj = document.getElementById('storydes' + i); 
		obj.style.display = "none";
		obj = document.getElementById('story' + i); 
		obj.style.display = "none";
		obj = document.getElementById('topstoryon' + i);
		obj.style.display = "none";
		obj = document.getElementById('topstory' + i);
		obj.style.display = "block";
	}
}
/*** Show Story ***/			 
function displayStory(storyID){
	hideStories();
	obj = document.getElementById('storydes' + storyID); 
	obj.style.display = "block";	
	obj = document.getElementById('story' + storyID); 
	obj.style.display = "block";				
	obj = document.getElementById('topstory' + storyID);
	obj.style.display = "none";
	obj = document.getElementById('topstoryon' + storyID);
	obj.style.display = "block";				
	storyID = storyID + 1;
	if(storyID >=5){
		storyID = 0;
	}
	sDisplay = setTimeout("displayStory("+storyID+")",8000);
}
			
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);
}

if(!readCookie("welcome")){
	createCookie("welcome", 1, 1);
	window.location = "http://" + window.location.hostname + "/welcome.php?url=" + window.location.href ;
}