function init_galerie(){
	
	
    //setat din highslide_full
    //alert(hs.graphicsDir);
	
	hs.registerOverlay(
    	{
    		thumbnailId: null,
    		overlayId: 'controlbar',
    		position: 'top right',
    		hideOnMouseOut: true
		}
	);
	
    hs.graphicsDir =  site_url+'highslide/graphics/';
    hs.outlineType = 'rounded-white';
    // Tell Highslide to use the thumbnail's title for captions
    hs.captionEval = 'this.thumb.title';
    hs.allowMultipleInstances = false;
    hs.dimmingDuration = 0;
    hs.blockRightClick = true;
    hs.align = 'center';
    hs.loadingText = '';
    hs.showCredits = false;
}    

function ShowHide(elem_id){
		   if(document.getElementById(elem_id)){
			if(document.getElementById(elem_id).style.visibility == 'hidden'){
				document.getElementById(elem_id).style.visibility = 'visible';
				document.getElementById(elem_id).style.display = 'block';
			}
			else{
				document.getElementById(elem_id).style.visibility = 'hidden';
				document.getElementById(elem_id).style.display = 'none';
			}
		}
	}

    
	YAHOO.util.Event.addListener(window, "load", init_galerie);