/* Author: Marc Bickel

*/

$(document).ready(function(e){

	var stageHeight = $(this).height();
	
	$('#mail').append('<img src="images/comingsoon.jpg" width="'+$("#main").width()+'"/>');
	
	var img = $("img")[0]; // Get my img elem
	
	// Make in memory copy of image to avoid css  issues 
	$("<img/>") // Make in memory copy of image to avoid css issues
	.attr("src", $(img).attr("src"))
	.load(function() {   
	// Note: $(this).width() will not work for in memory images.    
		if (stageHeight > this.height){
			var topMargin = (stageHeight - this.height) / 2;
			$('#main').css('top', topMargin+'px');
		}
	});
	
});
























