$(document).ready(function() {
	//- Populate the Personal section swfs
	var swfs = [
		['invaders.swf', 'alaxiandreams'], 
		['projectile_main.swf', 'projectilewars'], 
		['colour_selector.swf', 'colourselector'], 
		['calendar.swf', 'calendar'], 
		['sinwave.swf', 'waves'] 
	];
	
	for(var i in swfs)
	{
		if($('#' + swfs[i][1]).length > 0)
		{
			swfobject.embedSWF('/swfs/' + swfs[i][0], swfs[i][1], "450", "400", "9.0.0");
		}
	}
	
	//- Make fancybox images fancy
	$('.fancyimg').fancybox();

	//- Populate videos
	var vids = [
		["tweetsweets_casestudy.flv", "Tweet Sweets Case Study", "tweetsweets_vidholder.jpg", "tweetsweets_vid"], 
		["O2_Rugby_2010_edit.flv", "Be The Difference 2010 Case Study", "btd2010_vidholder.jpg", "btd2010_vid"], 
		["O2_be_the_difference.flv", "Be The Difference 2009 Case Study", "btd2009_vidholder.jpg", "btd2009_vid"] 
	];

	for(var j in vids)
	{
		if($('#' + vids[j][3]).length > 0)
		{
			swfobject.embedSWF(
				"/swfs/StrobeMediaPlayback.swf", 
				vids[j][3], 
				518, 
				291, 
				"10.0.0", 
				{}, 
				{
					id: (j+1+""), 
					src: "http://troot.org/work/flvs/" + vids[j][0], 
					autoPlay: "false", 
					width: "518", 
					height: "208", 
					autoHideControlBar: "true", 
					controlBarPosition: "bottom", 
					playButtonOverlay: "true", 
					bufferingOverlay: "true", 
					controlBarAutoHideTimeout: "2", 
					poster: "/work/images/" + vids[j][2], 
					backgroundColor: "#ffffff", 
					src_title: vids[j][1], 
					debug: "verbose"
				}, 
				{
					allowFullScreen: "true"
				}, 
				{
					name: "StrobeMediaPlayback"
				}
			);
		}
	}
});

