jQuery.preloadImages = function() { for(var i = 0; i<arguments.length; i++) jQuery("<img>").attr("src", arguments[i]); }

$(function() {
	// Background
	
	$('#bg_wrap img').css('opacity',0);
	$('#bg_wrap img').animate({ opacity: 1}, 3000);

});
