$j(document).ready(function(){ 
  /* set arrow background on 2nd menu level where there is a 3rd level */
  $j('#menu-main-menu ul').parent().addClass('arrow-down');
  
  /* no border right on last element of top level navigation */
  $j('#primary-nav ul.top-level li:last').css({'border-right':'none'});
  
  /* Search box behaviour */
  $j('#phrase').focus(function(){if($(this).value == 'Search the site'){$(this).value = '';}});
  $j('#phrase').blur(function(){if($(this).value == ''){$(this).value = 'Search the site';}});
  
  
  $j('.evenOdd tr:even').addClass("odd");
  $j('.evenOdd tr:odd').addClass("even");
  
  
  //$j('#startDate').datepicker({ inline: true });
  //$j('#endDate').datepicker({ inline: true });
  $j('.datepicker').datepicker();
  
  
  $j('#anything_slider').anythingSlider({easing:"swing", autoPlay:true, delay:8000, startStopped:false, animationTime:600, hashTags:false, buildNavigation:false, buildArrows:false, pauseOnHover:true});

  // Author: blacey
  // Add a class to form elements for ie6 styling
  $j(':checkbox').addClass('checkbox');
  $j(':submit').addClass('submit');
  
  $j('#sforum .sffooter:first').css({'display':'none'});
  
});
