jQuery(document).ready(function() 
{
 jQuery.each(jQuery("a.div-popup-page"),function()
 {
  if (this.href="#")
   this.href="/"+this.id+".html?t="+Math.random();
 });
jQuery("a.div-popup-page").fancybox({
	'zoomSpeedIn': 300,
	'zoomSpeedOut': 300,
	'overlayShow': false,
	'frameWidth':800,
	'frameHeight':parseInt(jQuery(window).height()-100)
	});

});

