/* Video/Fancybox stuff: */
 $(function() {    
	$(".viewflv").click(function() {
		$.fancybox({
			'autoscale' 	: false,
			'transitionIn' 	: 'none',
			'transitionOut'	: 'none',
			'padding'		: 0,
			'width'			: 446,
			'height'		: 359,
			'type'			: 'swf',
			'href'			: this.href,
			'swf'			: {
				'wmode':'transparent',
				'allowfullscreen':'true'
			}
		});      
		return false;
	});
});
