// JavaScript Document

//void SetCurrentPageNavigation()
//{
  // var CurrentPath = Request.Url.ToString().ToLower();
String.prototype.trim = function(){return
(this.replace(/^[\s\xA0]+/, "").replace(/[\s\xA0]+$/, ""))}

String.prototype.startsWith = function(str)
{return (this.match("^"+str)==str)}

String.prototype.endsWith = function(str)
{return (this.match(str+"$")==str)}
  
   var CurrentPath = document.URL;
	
	//alert(CurrentPath);
	
	//alert(CurrentPath.endsWith("nav.html"));

   // if (CurrentPath.endsWith("nav.html") || CurrentPath.endsWith(".com/") || CurrentPath.endsWith(".com"))
     //   navHome.Attributes.Add("class", "selectedHome");

    if (CurrentPath.indexOf("index.php")!=-1)
		document.getElementById('sp_home').innerHTML='<img src="images/btn-home-hover.png" />';
    if (CurrentPath.indexOf("ft-myers-web-design.php")!=-1)
		document.getElementById('sp_web').innerHTML='<img src="images/btn-websites-hover.png" />';
    if (CurrentPath.indexOf("ft-myers-graphic-design.php")!=-1)
		document.getElementById('sp_graphics').innerHTML='<img src="images/btn-graphics-hover.png" />';
    if (CurrentPath.indexOf("website-portfolio.php")!=-1)
		document.getElementById('sp_portfolio').innerHTML='<img src="images/btn-web-portfolio-hover.png" />';
    if (CurrentPath.indexOf("web-design-faqs.php")!=-1)
		document.getElementById('sp_faq').innerHTML='<img src="images/btn-faqs-hover.png" />';


//} 
