jQuery(function($){

  //Updating our navigation tab
  var pageurl = location.href.replace(/\/$/, '');
  $('a[href="' + pageurl + '"]').find('div').addClass('current');
  
  //Updating other relevent current links
  var pageurl = location.href;
  $('a[href="' + pageurl + '"]').addClass('current');

  //Getting our search bar right
  var search = $('input#query').focus(function() {
    $(this).attr('value', '');
    $(this).css({'color':'#333'});
  });

  //Initialize our slideshow
  var slideshow = $('#slideshow').cycle({
    fx: 'scrollLeft',
    speed: 200,
    timeout: 10000,
    next: '#img-next'
  });
  $('img', slideshow).click(function() {
    window.location.href = $(this).attr('href');
  });

});
