//INICIALIZA PLUGINS

$(document).ready(function(){	

		
		//FORM DE COMENTÁRIOS		
		$('#commentform_wrapper').mouseenter(function(){
			$(this).addClass("commentform_wrapper_hover"); 
		});	
		
		$('#commentform_wrapper').mouseleave(function(){
			$(this).removeClass("commentform_wrapper_hover"); 
		});	
		
		$("#author, #email, #url, #comment").focus(function(){
			$('#commentform_wrapper').addClass("commentform_wrapper_hover");			
		});
		
		$("#author, #email, #url, #comment").blur(function(){
			$('#commentform_wrapper').removeClass("commentform_wrapper_hover");			
		});
			
		
});

