$.fn.preload = function() {
    this.each(function(){
        (new Image( )).src = this;
    });
}

$(document).ready(function( ) {
	
	if($("#navSubContainer .here").length == 0) {$(".sub_level_0:first-child").addClass("here");}

	$([
		'/globalImages/btn_donate_ON.png',
		'/globalImages/gmf_ON.png',
		'/globalImages/pmaward_ON.png'
	]).preload( );
	
});


