
$(document).ready(function(){
    var pathname = window.location.pathname;
    
    //add class to switch background image
    if ( pathname == "/" || pathname == "/default.aspx")
    {
        $("body > div").addClass("homepage");
    }
    else
    {
        $("body > div").addClass("childPage");
    }
    
    //add active states to top nav
    var topNavLinks = ["the-lab", "the-method", "the-models", "experiments"];
  
    for ( i = 0; i <= 5; i++)
      {
        if(pathname.indexOf(topNavLinks[i]) > -1)
        {
            $("#topNav a[href$='" + topNavLinks[i] + ".aspx']").parent().addClass('current');
        }
      }
  
    //remove double quotes from FB profile images
    $("#facebook_feed img").each(function() {
      $(this).attr("src", $(this).attr("src").replace(/"/g, ""))
    })
        
     $("div#main").page_swap({
        speed: 1000,
        linkSource: "nav#sideNav a",
        pageSource: "ul#pages > li"
      });
      $("div#slider").slider({
        speed: 6000
      });
      
      $("div#cboxWrapper").css("max-width","1020px")
})
               

