/**
 * 
 */
jQuery(document).ready(function($) {
	var mTop = $('#main_template_wrapper').css('marginTop');
	var mLeft = $('#main_template_wrapper').css('marginLeft');
	
	checkSize();
	
	function checkSize(){
		var x = $(window).height()-$('#main_template_wrapper').height();
		var y = $(window).width()-$('#main_template_wrapper').width();
	
		if(x<0){
			$('#main_template_wrapper')
				.css('marginTop','0px')
				.css('top','0px');
			
		} 
		else {
			$('#main_template_wrapper')
				.css('marginTop',mTop)
				.css('top',"50%");
		}
		
		if(y<0){
			$('#main_template_wrapper')
				.css('marginLeft','0px')
				.css('left','0px');
			
		} 
		else {
			$('#main_template_wrapper')
				.css('marginLeft',mLeft)
				.css('left',"50%");
		}
	
	}
	
	$(window).resize(function() {
		checkSize();
		});

	
});

	


