$(document).ready(function(){

	$(document).ready(function(){

		var x = 0;	// counter variable for the films arrays
		var currFilmIndex = 0;	// stores the index of the current film

		var filmsArray = new Array();
		filmsArray[0] = "/projects/vincent/mp4/Vincent_640x360.mp4";

		$('.VideoPlayer').attr('href', '/swf/player.swf?file='+ filmsArray[0] + '&image=/projects/vincent/img/Vincent_still.jpg&backcolor=0x66ccff&frontcolor=0x000000&screencolor=0x000000&autostart=true');	
		$('.VideoPlayer').media( {   width: 640, height: 382, params:{allowFullScreen:true}, bgColor:'#0F0F0F', flashVersion:'9'  });											

		// initialize google Stats
		$.gaTracker('UA-7210865-1');
		$.fn.media.defaults.flashvars = { plugins:'googlytics-1'};

	});

});


