/**
 * @author Chris Baker
 * boldens the form submit button
 */

 $().ready(function() {
 	
	$('.formGroup.submit input').hover(function(){
		$(this).addClass('bold');
	},function(){
		$(this).removeClass('bold');
	});
	
 });
