

hs.graphicsDir = tpath + 'images/highslide/graphics/';
hs.outlineType = 'rounded-white';
hs.align = 'center';
hs.registerOverlay({
	html: '<div class="closebutton" onclick="return hs.close(this)" title="Închide"></div>',
	position: 'top right',
	fade: 2 // fading the semi-transparent overlay looks bad in IE
});
						
//EVENT HANDLERS					

$(document).ready(function(){
	$('a.highslide').live('click', function(){
		return hs.expand(this);
	})
});	

