﻿function ustHighlight(){
$('.col2, .content input, .content textarea, .content select').focus(function(){
$(this).parents('.row1').addClass("over");
}).blur(function(){
$(this).parents('.row1').removeClass("over");
});
}


