jQuery(document).ready(function() {
  jQuery('a[@rel*=facebox]').facebox() 
})

$(function() {
  $('#top_nav').find('img').hover(
    function() {
      if(!this.src.match(/_on\.gif$/) && this.className != 'selected') this.src = this.src.replace('\.gif', '_on.gif');
    },
    function() {
      if(this.src.match(/_on\.gif$/) && this.className != 'selected') this.src = this.src.replace('_on\.gif', '.gif');
    }
  )
})

