
function GB_hide() {
	$('GB_window').addClass('hide');
	//$('GB_overlay').addClass('hide');
}
function GB_show(what) {
	$('GB_window').removeClass('hide');
	$('GB_frame').setProperty('src', what); 
	
	//$('GB_overlay').removeClass('hide');
}

$$('#myElement a.myClass')

window.addEvent('domready', function(){
	var anchors = $$('area'); 
	anchors.each(function(element, i){
		if ((element.getAttribute('href'))) {
			element.onclick = function () { GB_show(this); return false; }
		}
	});
	
});
