$(document).ready(function(){
	
	$('.button').hover(function(){
		$(this).addClass('hover');
	}, function (){
		$(this).removeClass('hover');
	
	});
	
	$('.button').click(function() {
		$("#testBox").toggleClass('yellow');
		$(this).unbind('mouseover').unbind('mouseout');
	});
	
	
});