/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(function(){
$(".button_center").hover(function(){

  $(this).addClass("select");
}
,function(){
$(this).removeClass("select");
});
})
