/*
CORNERSTONE INTERACTIVE JS
cornerstoneinteractive.com
@cornerstone - twitter.com
*/

jQuery(document).ready(function($){
  csMenu();
});

function csMenu() {
  $('#nav-main li').each(function(){
    if (location.pathname.indexOf($('a',this).attr('href').substring($('a',this).attr('href').lastIndexOf('/')))>-1){
      $(this).addClass('current_page_item');
    }
  });
    $('.slideshow').cycle({timeout:9000,random:1,speed: 1000,delay:-3000});
  $('#detailShots').cycle();
}