// JavaScript Document

function videoYT(code){
	
	$( 'html, body' ).animate( { scrollTop: 0 }, 0 );
	
	$.fancybox({
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.9,
			'padding'		: 0,
			'width'			: 800,
			'height'		: 600,
			'href'			: 'http://www.youtube.com/watch_popup?v='+code,
			'type'			: 'iframe'
		});
}
		

