// print
function printMe(){
	print();
}

/* 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);
		if($.browser.msie == false){
			$(this).css("min-height", maximaHeight);
		}
		if($.browser.msie == true){
			if($.browser.version < 7){
				$(this).css("height", maximaHeight);
			}else{
				$(this).css("min-height", maximaHeight);
			}
		}
	});
	
};
$(document).ready(function(){
	$(".submitbutton").click(function() {
		$(this).parents("form").submit();
		return false;
	});	
	goSetHeight('ul.steps li');
});