jQuery(function() {
		jQuery('li.reason-item a').mouseover(function() {
				jQuery('li.reason-item a').attr('className', '');
				jQuery(this).attr('className', 'active'); //set the one you are on to active (kinda re-doing the css hover, but this will stay on mouse off)
				
				jQuery('.entry-content').hide();
				var cntNum = this.id.substr(12);
				jQuery('#reason-detail-'+cntNum).show();
		});
		
		jQuery('li.reason-item a').click(function(e) {
				e.preventDefault();
				return false;
		});
});
