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

function giveNumber(tothier){
	var numRand = Math.floor(Math.random()*tothier);
	return numRand;
}


$(document).ready(function() {
	// put all your jQuery goodness in here.
	$("#top").attr("style", "background: url(/images/bg_top" + giveNumber(9) + ".jpg) no-repeat top center;");
});

/* 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);
	});
	
};

