function fancybox_load() {
	jQuery('.lightwindow').each(function (ind, ele) {
		jQuery(ele).fancybox({
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'autoDimensions': true
		});
	});
	
	jQuery('.lightwindow_map').each(function (ind, ele) {
		jQuery(ele).fancybox({
			'transitionIn'	: 'fade',
			'transitionOut'	: 'fade',
			'padding' : '0',
			'scrolling' : 'no',
			'href' : 'http://www.housing.vt.edu/map/lightwindow_include.php',
			'width' : 776,
			'height' : 618,
			'type' : 'iframe'
		});
	});

	jQuery('.lightwindow_youtube').each(function (ind, ele) {
		jQuery(ele).fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'title'			: this.title,
			'width'		: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
		return false;	
	});
	
	jQuery('.lightwindow_pdf').each(function (ind, ele) {
		jQuery(ele).fancybox({
			'transitionIn'	: 'fade',
			'transitionOut'	: 'fade'
		});
	});
}
