$(document).ready(function()
{
$('.CommentName, .CommentName02, .CommentInput, .CommentInput02, .CommentInputSe, #Commentfeed, #Commentfeed input, #Commentfeed textarea, #CommentTextarea, input.CommentSubmit').focus(function(){
$(this).parents('.row').addClass("over");
}).blur(function(){
$(this).parents('.row').removeClass("over");
});
});