function popupGallery(url) {
	var width = 522;
	var height = 477;
	var left = (screen.width-width)/2;
	var top = (screen.height*0.8-height)/2;
	newWin = window.open(url, "popup", "width="+width+",height="+height+",toolbar=no,location=no,directories=no,resizable=no,status=no,menubar=no,screenX=100,screenY=100, left="+left+", top="+top);
}

$(document).ready(function() {
	$('A[rel="gallery"]').click(function() {
		popupGallery($(this).attr('href'));
		return false;
	});
});