﻿/*Get URL Parameter*/


function setMenuCSS()
{	
	var strLinkName="lnkHotels";
	var strCurrentURL= document.location.href;			
	if (strCurrentURL.match("reviews")!= null)
	{
		strLinkName="lnkReviews";
	}
	else if (strCurrentURL.match("video-travel")!= null)
	{
		strLinkName="lnkVideos";
	}
	else if (strCurrentURL.match("testimonials")!= null)
	{
	    strLinkName="lnkTestimonials";
	}
	else
	{
		strLinkName="lnkHotels";
	}
	document.getElementById (strLinkName).className ="current";
	
}

