// Center vertically

	$(window).load(function() {
							   
		var doc_height = $(document).height();
		var el_height = $('#info').height();
		var position = doc_height/2 - el_height/2;
		
		$('#info').css({'position' : 'relative' , 'top' : position
								 
		});
		
	});
	
// Validation 

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