$(document).ready(function() {
	rebindButtons();
});

function rebindButtons()
{
	$('.fg-button').hover(
			function(){ 
				$(this).addClass("ui-state-hover"); 
			},
			function(){ 
				$(this).removeClass("ui-state-hover"); 
			});
}



