/****************************************************************************************************************
 * flashShadowboxInjector 2.0 "Agnostic free" - by osamwal - http://www.yaelle.com/
 * v 2.0 - 2008.09.29 - Shadowbox 2.0 adapter for PictureFlow 3+ (don't work with previous version)
 * Licensed under the Creative Commons Attribution 2.5 License - http://creativecommons.org/licenses/by/2.5/
 ****************************************************************************************************************/

var galleryArray = [];
var resetzeBox = function(){galleryArray = [];}
var add2box = function(myFlowItem){
    
    galleryArray[galleryArray.length] = {"href":myFlowItem['content']};
}

//myFlowItem['content'];};

var openzeBox = function(id){
//	$('.carrousel').hide();
	$('.carrousel').css('visibility','hidden');

	tb_show('',galleryArray[id].href,'propio');
	

	
	};

// You can tune your Shadowbox options below (See the exhaustive list of options on http://www.mjijackson.com/shadowbox/doc/api.html)
var ShadowboxOptions = {
        continuous		: true,
		counterType		: 'skip',
		animate			: true,
		handleOversize	: 'drag',
		slideshowDelay	: 0,
		animSequence	: 'sync' // Beware to don't put a "," after this last line of options... Else, massive headache to debug in IE ;)
}



