// JavaScript Document
<!-- Image Preload Script -->
var image1 = $('<img />').attr('src', 'Wheat_2.jpg');

// Insert preloaded image into the DOM tree
$('.profile').append(image1);
// OR
image1.appendTo('.profile');

// Insert preloaded image after it finishes loading
$('<img />')
    .attr('src', 'Wheat_2.jpg')
    .load(function(){
        $('.profile').append( $(this) );
        // Your other custom code
    });
	
// Background

	$('#background-wrap img').html('opacity',0);
	$('#background-wrap img').animate({ opacity: 1}, 3000);
