

jQuery(document).ready(function() {  
	jQuery('a.link').mouseenter(
		function() {
			infoClass = this.id
  			$('.'+this.id).fadeIn("slow");

	});
	jQuery('a.link').mouseleave(
		function() {
  			
		$('.'+this.id).fadeOut("slow");

	});
	
	jQuery("#commentForm").validate();
	$('.clearme').focus(function() {
    $(this).val("");
  });
	
});


