var gallery = {
	init: function()
	{
		if( $('#media-gallery').length)
		{
			$('.gallery-trigger img').each(
				function()
				{
					$(this).after('<img class="zoom" style="position: absolute; left: ' + ($(this).width()-20) + 'px; top: ' + ($(this).height()-20) + 'px; z-index: 2" src="typo3/sysext/t3skin/icons/gfx/zoom.gif" title="Zoom" />');
				}
			);
			$(".gallery-trigger").overlay({
				target: '#gallery',
				expose: '#f1f1f1'
			}).gallery({
				speed: 800
			});
		}else{
			$('.tx_fhmemo_pi1-preview').hide();
			$("img[rel]").css('cursor', 'pointer');
			$("img[rel]").click(function(){
				if( $(this).attr('filetype') == 'flv')
				{
					window.open('uploads/tx_dam/player_' + $(this).attr('uid') + '.html', "Media Player", "width=508,height=380,left=100,top=200");
				}
				$($(this).attr('rel')).slideToggle();
			}); 
			$('.tx_fhmemo_pi1-preview img').css('cursor', 'pointer');
			$('.tx_fhmemo_pi1-preview img').click(function(){
				$(this).parent().slideToggle();
			});
		}
	}
}
$(document).ready(function(){
	gallery.init();
})