window.onload = function() {
	$(".button_off").bind("mouseenter", function(e){
    $('.button_on').each(
	    function(){
	    	$(this).removeClass('button_on');
				$(this).addClass('button_off');						
	  	}
		);
    
    
    id = getIndex($(this).attr('id'));
    
    $('.selector').each(function(){$(this).hide();});
    
    $('#selector_'+id).show();
		$(this).removeClass('button_off');
		$(this).addClass('button_on');
  });
	
}

