
$(document).ready(function()
{

		$(".panopop").bind("click", function(e)
		{
			e.preventDefault();
			window.open('/media/viewer.php?img=' + $(this).attr("href"), "viewer_window", "status=0, toolbar=0, menubar=0, resizeable=0, scrollbars=0, width=515, height=320");			
			return false;
		});	

});
