/*  To highlight the menu link */

	if(window.location.href.indexOf("press.aspx")!= -1)
				{	
					document.getElementById("btnsports").className = "sportpage";
				}
				if(window.location.href.indexOf("press_business.aspx")!= -1)
				{	
					document.getElementById("btnbussiness").className = "bussinesspage";
				}
				if(window.location.href.indexOf("press_ad_gallery.aspx")!= -1)
				{	
					document.getElementById("btngallery").className = "gallerypage";
				}
				if(window.location.href.indexOf("press-view.aspx")!= -1)
				{
					
					if(document.getElementById("presscategory").innerHTML == "Sports")
					{
						document.getElementById("btnsports").className = "sportpage";					
					}
					if(document.getElementById("presscategory").innerHTML == "Business")
					{
						document.getElementById("btnbussiness").className = "bussinesspage";					
					}
				}
				