// grab information section variable
var locate = window.location;
document.reveal.id.value = locate;
var text = document.reveal.id.value;

function info(str){
	theleft = str.indexOf("z") + 2;
	//theright = str.lastIndexOf("l");
	activepage = str.substring(theleft);
	//activepage = str.substring(theleft, theright);

if (activepage == 'reservations.html')
 	{
 		activenav = 'reservationsPage';
 	}
	else if (activepage == 'hostel.html')
 	{
 		activenav = 'hostelPage';
 	}
	else if (activepage == 'seedo.html')
 	{
 		activenav = 'seedoPage';
 	}
	else if (activepage == 'faq.html')
 	{
 		activenav = 'faqPage';
 	}
	else if (activepage == 'location.html')
 	{
 		activenav = 'locationPage';
 	}
	else if (activepage == 'bookings.html')
 	{
 		activenav = 'bookingsPage';
 	}
	else if (activepage == 'seedo.html?edit=yes')
 	{
 		activenav = 'showtabs';
 	}
	else if (activepage == 'index.html' || activepage != 'index.html')
 	{
 		activenav = 'homePage';
 	}
	return(activenav);
}