// JavaScript Document
var videoclip;   // used in fancyplayer, basically, but had to declare it beforehand

$(function() {
   $('#tab-container').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'normal' });     
});

function callFancy(video) {
	videoclip = video;
	$('#hiddenclicker').trigger('click');
}

function changed(movie) {
	window.document["flash"].changeMovie(movie);			
	return true;
}
