function txt_clear(inpt, dflt) {
	if (inpt.value==dflt) {
		inpt.value = '';
	}
}

jQuery(document).ready(function() {

    jQuery('#hdr3').mouseover(function() {
      jQuery(this).children('ul.sub-nav').addClass('hover');
    });

    jQuery('#hdr3').mouseout(function() {
      jQuery(this).children('ul.sub-nav').removeClass('hover');
    });

});
