// submit
function submitMe(dit){
	$(dit).submit();
}

$.metadata.setType("attr", "validate");

$(document).ready(function() {
    $("#newsform").validate();
});

// suckerfish
$(document).ready(function() {
	// put all your jQuery goodness in here.
	$("#nav li").hover(
      function () {
		  $(this).addClass("sfhover");
      }, 
      function () {
		  $(this).removeClass("sfhover");
      }
    );
});

/* goSetHeight */
function goSetHeight(dit){	

	var maximaHeight = 0;
	
	$(dit).each(function(){
							   
		nuHeight = $(this).height();
		if(nuHeight > maximaHeight){
			
			maximaHeight = $(this).height();
		}
		
	});

	$(dit).each(function(){
		$(this).height(maximaHeight);
	});
	
};

