$(document).ready(function()
{
$('.cwcfName, #cwcfIn input, #cwcfIn textarea, #cwcfIn .cwcfName, #cwcfIn .cwcfInput').focus(function(){
$(this).parents('.row').addClass("over");
}).blur(function(){
$(this).parents('.row').removeClass("over");
});
});