function img_preloader(){
    var $img_names = ['side_strip_home.jpg', 'images/top_content_coin.png', 'images/header_home.jpg', 'images/gold_coin_splash.png', 'images/splash_commem_coin_stack.png', 'images/splash_ae_coin_stack.png', 'images/commem_featured_gold.png', 'images/commem_featured_gold_wide.png', 'images/commem_featured_gold_ae.png', 'images/demo_image_gallery.jpg', 'images/splash_gold_signup.jpg', 'images/side_strip_commem.jpg', 'images/splash_contact_gold_specialists.jpg', 'images/splash_why_govt_gold.jpg', 'images/banner_order_your_gold_coins.gif', 'images/side_strip_ae.jpg', 'images/splash_commemorative_gold_coin.jpg', 'images/splash_overview.jpg', 'images/splash_americaneagle_gold_coin.jpg', 'images/splash_faqs.jpg', 'images/side_strip_why_gold.jpg', 'images/splash_at_cost.jpg', 'images/side_strip_at_cost.jpg', 'images/contact_us_gold_coin.gif', 'images/header_ae.jpg', 'images/header_commem.jpg', 'images/header_contact.jpg', 'images/header_faqs.jpg', 'images/header_gallery.gif', 'images/header_gold_at_cost.gif', 'images/header_gold_at_cost.gif', 'images/header_gold_signup.jpg', 'images/header_overview.jpg', 'images/header_why_gold.jpg'];
    var $img_objects = []
    for (var $i = 0; $i < $img_names.length; $i++){
	    $img_objects[$i] = new Image();
	    $img_objects[$i].src = $img_names[$i]
    }
}

/*@@ Add Event Listenter from PPK  QuirksBlog @@*/
/*url:: http://www.quirksmode.org/blog/archives/2005/10/_and_the_winner_1.html */
function addEvent( obj, type, fn )
{
	if (obj.addEventListener)
		obj.addEventListener( type, fn, false );
	else if (obj.attachEvent)
	{
		obj["e"+type+fn] = fn;
		obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }
		obj.attachEvent( "on"+type, obj[type+fn] );
	}
}

/* Set the preloader */
//addEvent(window, 'load', img_preloader)
window.setTimeout('img_preloader()', 10000)