// JavaScript Document

$(function () {

	var ph = $('#placeholder'),
		src = ph.text()
	
	preloadImage(src);
	
	function preloadImage (src) {
	
		var img = new Image();
		
		$(img).load(function () {
		
			$(this).hide();
			
			ph.replaceWith(this);
			
			$(this).fadeIn(500);
		
		}).attr({
			src: src,
			id: 'bg'
		});
		
	}

});

