// Google Custom Search
$(function(){
  $("#cse-search-box").attr("action","/search_result/");
  $("#cse-search-box dd").prepend("<input type='hidden' name='cof' value='FORID:11' />");
});

// Roll Over
$(function(){
  $("img.rollover").mouseover(function(){
    $(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
  }).mouseout(function(){
    $(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
  }).each(function(){
    $("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
  });
});

// Slideshow
$(function(){  
  $('#home-image img:gt(0)').hide();  
  setInterval(function(){  
    $('#home-image :first-child').fadeOut("slow")  
      .next('img').fadeIn("slow")  
      .end().appendTo('#home-image');},  
    6000);  
});  



