// JavaScript Document
$(document).ready(function(){
						   
	$(window).resize(function(){

		$('.LoginBox').css({
			position:'absolute',
			left: ($(window).width() - $('.LoginBox').outerWidth())/2,
			top: ($(window).height() - $('.LoginBox').outerHeight())/2
		});
		
	});
	// To initially run the function:
	$(window).resize();

});
