
var activeVideo = 'videoIndescribable';

$(document).ready(function() {
	/* Stories compactor */			  
	$(".clickHead").click(function() {
		if( !$(this).hasClass('active') ) {
			$(this).addClass('active');
			$("#" + $(this).attr('title') ).slideDown('fast');
		} else {
			$(this).removeClass('active');
			$("#" + $(this).attr('title') ).slideUp('fast');
		}
	});

	/* Ajax Tabs */
	$("ul.indexVideoLinks li a[rel]").click( function() {
		me = $(this);
		
		$("#" + activeVideo).fadeOut("fast", function callback() {
			$("#" + me.attr("rel")).fadeIn("fast", function callback() {
				activeVideo = me.attr("rel");
			});
		})
		
		return false;
	});

	/* Initialize videos */
	$('#videoHowGreat').flash({
		src: site_url + '/view/flash/howgreat.swf',
		width: 460,
		height: 285
	});
	$('#videoHope').flash({
		src: site_url + '/view/flash/hope.swf',
		width: 460,
		height: 285
	});
	$('#videoIndescribable').flash({
		src: site_url + '/view/flash/indescribable.swf',
		width: 460,
		height: 285
	});
	$('#videoFruitcake').flash({
		src: site_url + '/view/flash/fruitcake.swf',
		width: 460,
		height: 285
	});
	$('#videoTwelveWords').flash({
		src: site_url + '/view/flash/twelve_words.swf',
		width: 460,
		height: 285
	});

	
});

