// JavaScript Document
$(document).ready(function(){
$('.window').each(function(){ 
        var dWidth  = parseInt($(this).attr('href').match(/width=[0-9]+/i)[0].replace('width=',''));  
        var dHeight =  parseInt($(this).attr('href').match(/height=[0-9]+/i)[0].replace('height=',''));  
		$(this).fancybox({  
			'width':dWidth,
			'height':dHeight,
			'autoScale':false,
			'type':'iframe'
		});  
   });   
});
