jQuery(document).ready(function() {

	jQuery("a#single_image").fancybox();

	jQuery("a#inline").fancybox({
		'hideOnContentClick': true
	});

	jQuery("a.iframe").fancybox({
		'hideOnContentClick': false,
		'frameWidth' : jQuery(window).width() - 200,
		'frameHeight': jQuery(window).height() - 100
	});

	jQuery("a.group").fancybox({
		'zoomSpeedIn':	300,
		'zoomSpeedOut':	300,
		'overlayShow':	true,
		'overlayOpacity': 0.7
	});
});
function popImagePG(imageURL, imageTitle, thumb_name, w, h)
{
	PopupPic(imageURL.replace(thumb_name, "thumbs800x600/"), imageTitle, w, h);
}

function PopupPic(sPicURL, title, w, h) { 
    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
    winprops = 'height=100,width=100,top='+wint+',left='+winl+'resizable=0';
  	window.open(base_href + "picturedetail.html?" + sPicURL + "&" + title + "", "", winprops);
}

