window.onload = function startUp()
{
  setHeight();
  navColorSwitch();
}

function navColorSwitch()
{
  // /C:/Documents%20and%20Settings/gerardg/My%20Documents/websites/symbolic
  if(location.pathname=="/")
  {
    document.getElementById('link01').style.backgroundColor="#215766";
    document.getElementById('link01').style.color="#a5c5ce";
  }
  if(location.pathname=="/index.html")
  {
    document.getElementById('link01').style.backgroundColor="#215766";
    document.getElementById('link01').style.color="#a5c5ce";
  }
  else if(location.pathname=="/services.html")
  {
    document.getElementById('link02').style.backgroundColor="#215766";
    document.getElementById('link02').style.color="#a5c5ce";
  }
  else if(location.pathname=="/about.html")
  {
    document.getElementById('link03').style.backgroundColor="#215766";
    document.getElementById('link03').style.color="#a5c5ce";
  }
  else if(location.pathname=="/contact.html")
  {
    document.getElementById('link04').style.backgroundColor="#215766";
    document.getElementById('link04').style.color="#a5c5ce";
  }    
}

/******* JQUARRY FUNCTIONS START *******/

function setHeight()
{
  $(document).ready(function() {
    //set height for #mainContent
    var lch = $("#leftCol");
    var rch = $("#rightCol");
    
    if (lch.innerHeight() < rch.innerHeight()) 
    {
    lch.css("height", rch.innerHeight());            
    }  
  });
}

$(document).ready(function() {   

    $(".imgGal").click(function() {
      images = ['images/fullscreen/img_symb001_full.jpg', 'images/fullscreen/img_symb001_full2.jpg'];
    	titles = ['Image 1','Image 2'];
    	descriptions = ['Rocks are cool','Very cool Rocks'];
    	$.prettyPhoto.open(images,titles,descriptions);

    });
    
    $("#tabs").tabs();

})


/******* /JQUARRY FUNCTIONS START *******/

