var Videos = new Object();


Videos['ponti'] = new Object();
Videos['ponti']['width'] = 640;
Videos['ponti']['height'] = 499;
		
Videos['bisuite'] = new Object();
Videos['bisuite']['width'] = 640;
Videos['bisuite']['height'] = 499;
		

	$(document).ready(function() { 

		$("a.iframe").fancybox({'overlayOpacity' : '0.4'});
		
		$("a.iframe").click(function () {
				title = $(this).attr('href');
				titleparts = title.split('?video=');
				$('#fancy_outer').css({'width' : Videos[titleparts[1]]['width']+110, 'height' : Videos[titleparts[1]]['height']+140});
				$.fn.fancybox.scrollBox();	
		});
		
	});