var active = 1;
function embed(gallery){
	var flashvars = {
	};
	var params = {};
	var attributes = {};
	swfobject.embedSWF("portfolio.swf", "realisations_panel2", "970", "330", "9.0.0", "", flashvars, params, attributes);
}

embed("shop_gallery.xml");

function hide_box()
{
	new Effect.Opacity('box'+active, { from:1, to: 0.3, duration: 0.5 });
	$('rel'+active+'-desc').hide();
}

Event.observe(window, "load", function()
{
//	new Effect.Opacity('box1', { from:1, to: 0.5, duration: 0.5 });
	new Effect.Opacity('box2', { from: 1, to: 0.3, duration: 0.5 });
	new Effect.Opacity('box3', { from: 1, to: 0.3, duration: 0.5 });
	
	$('box1').observe('click', function(){
		if (active != 1) {
			hide_box();
			embed("shop_gallery.xml");
			$('rel1-desc').show();
			new Effect.Opacity('box1', {
				from: 0.3,
				to: 1,
				duration: 0.5
			});
			active=1;
		}
	});
	
	$('box2').observe('click', function(){
		if (active != 2) {
			hide_box();
			embed("cms_gallery.xml");
			$('rel2-desc').show();
			new Effect.Opacity('box2', {
				from: 0.3,
				to: 1,
				duration: 0.5
			});
			active = 2;
		}
	});
	
	$('box3').observe('click', function(){
		if (active != 3) {
			hide_box();
			embed("portal_gallery.xml");
			$('rel3-desc').show();
			new Effect.Opacity('box3', {
				from: 0.3,
				to: 1,
				duration: 0.5
			});
			active = 3;
		}
	});
	
});

