$j = jQuery;
$j(document).ready(function(){

	$j(".nav_group").hover(function() {
		 $j(this).children("ul").addClass("block");
	}, function() {
        $j(this).children("ul").removeClass("block");
	});
});
