function mycarousel_getItemHTML ( item , lang)
{
	var big = "'" + item.big + "'";
	var height = "'" + item.height + "'";
	var width = "'" + item.width + "'";
	return '<a href="?module=media&amp;utility=show_album_content&amp;album_id=' + item.big + '&amp;lang=' + lang + '" title="' + item.title + '" class="bwGal"><img src="' + item.url + '" class="car_image" alt="' + item.title + '" onclick="imageIsClicked(this)" /><br /><span>' + item.title + '</span></a>';
};

function mycarousel_itemVisibleInCallback ( carousel, item, i, state, evt )
{
	var idx = carousel.index ( i, mycarousel_itemList.length );
	carousel.add ( i, mycarousel_getItemHTML ( mycarousel_itemList [ idx - 1 ] , language));
};

function mycarousel_itemVisibleOutCallback ( carousel, item, i, state, evt )
{
	carousel.remove ( i );
};

function show_youtube( video )
{
	return '<object width="384" height="313"><param name="movie" value="http://www.youtube.com/v/' + video + '&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/' + video + '&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" width="384" height="313" allowscriptaccess="always" allowfullscreen="true"></embed></object>';
}
