﻿$(function()
{
	var ops	= 
	{
		'padding'				: 20,
		'overlayShow'			: true,
		'overlayOpacity'		: '0.5',
		'frameWidth'			: 873,
		'frameHeight'			: 480,
		'hideOnOverlayClick'	: true,
		'hideOnContentClick'	: false
	};
	
	$('.video').fancybox(ops).click(function(event)
	{
	    setupVideo();
	});
});

function setupVideo()
{		    
	var vars =
	{
		file				: 'anvil_promo.flv',
		width				: '873',
		height				: '480',
		controlbar			: 'over',
		autostart			: 'true',
		repeat				: 'none',
		linktarget			: '_self',
		quality				: 'true',
		screencolor			: '000000',
		skin				: '/flash/modieus.swf',
		bufferlength		: '15',
		javascriptid		: 'video',
		abouttext			: 'Powered by Anvil Digital',
		aboutlink			: 'http://www.anvildigital.com/'
	};
    
	var params =
	{
		allowscriptaccess	: 'always',
		allowfullscreen		: 'true',
		wmode				: 'transparent'
	};
				
	$('#fancy_div div').flash(
	{
		swf					: '/flash/player_fullscreen.swf',
		width				: vars.width,
		height				: vars.height,
		flashvars			: vars,
		params				: params
	});
}