$(document).ready(function(){
	 var $strong = $('.testmon strong');
	 $strong.hover(function() {
		$(this).addClass('overtext');
		}, function() {
		$(this).removeClass('overtext');
	});
	 $strong.click(function (){
			if ($(this).attr('class') == 'click')
				$(this).removeClass('click');
			else{	
				$strong.removeClass();
			    $(this).addClass('click');
			}
	 });							  
		

					   
});