
// Image loading plugin
jQuery.fn.image = function(src, f){
	return this.each(function(){
		var i = new Image();
		i.onload = f;
		jQuery(i).hide();
		i.src = src;
		this.appendChild(i);
	});
}

jQuery(document).ready(function(){
	// The code for the image to load
	jQuery("div#flash_graphic.loading").image(site_root + "images/cob/header_splash.jpg",function(){
		jQuery("div#flash_graphic").removeClass('loading');
		jQuery(this).fadeIn(1000);
	});     
});

