window.addEvent('domready', function(){
    $("imagebackgroundsh").setOpacity(0.1);
    $("imagebackground").setOpacity(0.6);
    
    $("imageholder").addEvent('click', function(){
	$("imageclose").style.display="none";
	$("imagedisplay").style.display="none";
        $("imagebackground").style.display="none";
	$("imagebackgroundsh").style.display="none";
    });
    $("imageclose").addEvent('click', function(){
	$("imageclose").style.display="none";
	$("imagedisplay").style.display="none";
        $("imagebackground").style.display="none";
	$("imagebackgroundsh").style.display="none";
    });
    
});


