/**
 * @author mamurillo
 */

function setupGallery(){
	$("a.gallery").click(function (e) {
		e.preventDefault();	
		var linktarget = this;
		$("#mdialog").modal({
			overlayId: 'mdialog-overlay',
			containerId: 'mdialog-container',
			dataId: 'mdialogcontent',
			minHeight:300,
			close:false,
			opacity:65, 
			position:['0',],
			overlayClose:true,
			onShow:GALLERY.show(linktarget)
		});
	});
	
	$("a.closeImg").click(function(){
		$.modal.close();
	});
	
	var GALLERY={
	 container:null,
	 show: function(obj){		
	 	$("#mdialog div.bd").css({
			'width': '680px',
			'height': '500px'
		});
		$("#mdialog div.bd").css({
			'background':'url('+$(obj).attr('imguri')+') no-repeat 15px 50px'}
		);
	 }
	}
}

