$(document).ready(function(){
	//Validation
  	jQuery("#registrationForm").validate();
  
	if (jQuery.browser.msie) {
		jQuery('#home-banner em, #aside .box em, .training-item .details em').hover(
			function(){ $(this).css('text-decoration','none'); },
			function(){ $(this).css('text-decoration','underline'); }
		);
	}
	
	// education items
	jQuery('.educationCatItem').hover(
		function(){ $(this).addClass('hovered'); },
		function(){ $(this).removeClass('hovered'); }
	);

});

