$(function(){
	
   $("#nav a img").hover(function(){
    
        this.src = this.src.replace("_off","_on");
    }, function(){
    
        this.src = this.src.replace("_on","_off");
    
    });
   var tabContainers = $('div.tabs > div');
    
    $('div.tabs ul.tabNav a').click(function () {
        tabContainers.hide().filter(this.hash).show();
        
        $('div.tabs ul.tabNav a').removeClass('selected');
        $(this).addClass('selected');
        
        return false;
    }).filter(':first').click();
	
	

   
});

//this is for the products jump menu 
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
   
	
	

