var isloaded = false;
if (document.images) {
    hmimg1off = new Image();hmimg1off.src = "images/home_btn_newsreadmoreen_off.gif";
    hmimg2off = new Image();hmimg2off.src = "images/home_btn_newsreadmoreen_off.gif";
	hmimg3off = new Image();hmimg3off.src = "images/home_btnto_traileren_off.jpg";
	hmimg4off = new Image();hmimg4off.src = "images/hm_bio_bracket2en_off.jpg";
	hmimg5off = new Image();hmimg5off.src = "images/hm_btn_toallnewsen_off.jpg";	
	hmimg6off = new Image();hmimg6off.src = "images/hm_gfx_readhistoryen_off.jpg";	
	hmimg7off = new Image();hmimg7off.src = "images/hm_btn_boarden_off.jpg";	
	hmimg8off = new Image();hmimg8off.src = "images/hm_btn_games_off.jpg";	
	
}
function hmimageLoad() {
    if (document.images) {
    hmimg1on = new Image();hmimg1on.src = "images/home_btn_newsreadmoreen_on.gif";
    hmimg2on = new Image();hmimg2on.src = "images/home_btn_newsreadmoreen_on.gif";
    hmimg3on = new Image();hmimg3on.src = "images/home_btnto_traileren_on.jpg";
    hmimg4on = new Image();hmimg4on.src = "images/hm_bio_bracket2en_on.jpg";
	hmimg5on = new Image();hmimg5on.src = "images/hm_btn_toallnewsen_on.jpg";
	hmimg6on = new Image();hmimg6on.src = "images/hm_gfx_readhistoryen_on.jpg";
	hmimg7on = new Image();hmimg7on.src = "images/hm_btn_boarden_on.jpg";	
	hmimg8on = new Image();hmimg8on.src = "images/hm_btn_games_on.jpg";	
	
        return (isloaded = true);
    }
}
function hmrollOut(hmimgName) {
    if (document.images) {
        document[hmimgName].src = eval(hmimgName+"off.src");
    }
}
function hmrollIn(hmimgName) {
    if (document.images && (isloaded == true)) {
        document[hmimgName].src = eval(hmimgName+"on.src");
    }
}