
jQuery(document).ready(function() {


/* primary nav rollovers */
	jQuery("#primary-nav > li").mouseover(function()
  {
    this.firstChild.firstChild.src= this.firstChild.firstChild.src.split(".GIF")[0]+"_ON.GIF";
    
    $(this).addClass("hover");
    
  })
  
	jQuery("#primary-nav > li").mouseout(function()
  {
    if (this.firstChild.firstChild.src.indexOf("_ON")>-1)
    {
      this.firstChild.firstChild.src= this.firstChild.firstChild.src.split("_ON.GIF")[0]+".GIF";      
    }
  
    $(this).removeClass("hover");  
  })  
    
   
});
