$(document).ready(function () {
	$('a.image_left')
		.click(function () {
			$('#swfBox, #flvPlayerBox, #animationBox').hide();
			$('#imageBox')
				.html('<img src="' + $(this).attr('href') + '" />')
				.show();
			
			return false;
		});
	
	$('a.flvplayer_left').click(function () {
		$('#imageBox').hide();
		$('#flvPlayerBox').show();
		$('#flvPlayerBoxNoFlash').html('');

		swfobject.embedSWF("/flash/player.swf", "flvPlayerBoxNoFlash", "353", "280", "9.0.0", "/javascript/swfobject/expressInstall.swf", {file: $(this).attr('href'), autostart: "true"}, {wmode : "transparent", allowscriptaccess: "always"}, {});
		
		return false;
	});
});
