jQuery(document).ready(function() {
	jQuery('.mydiaporama').galleryView({
		panel_width: 0,
		panel_height: 0,
		frame_width: 192,
		frame_height: 128,
		filmstrip_size: 4,
		overlay_height: 0,
		overlay_font_size: '1em',
		transition_speed: 1200,
		transition_interval: 5500,
		overlay_opacity: 0,
		overlay_color: 'black',
		background_color: 'transparent',
		pointer_color: '#000',
		overlay_text_color: '#FFF',
		caption_text_color: '#000',
		border: 'none',
		nav_theme: 'galleryview/dark',
		easing: 'swing',
		filmstrip_position: 'bottom',
		overlay_position: 'bottom',
		show_captions: false,
		fade_panels: true,
		pause_on_hover: true
	});
	jQuery('.mydiaporama .filmstrip a').fancybox();
	
	nav = navigator.appName;

	$(".mydiaporama img").hover(
		function()
		{
			if($(this).parent().attr("title")!="")
			{
				$("#legende").html($(this).parent().attr("title"));
				if(nav!="Microsoft Internet Explorer")
				{
					$("#legende").fadeOut(0);
					$("#legende").fadeIn(350);
				}
			}
			else
			{
				$("#legende").html("&nbsp;");
			}
		},
		function()
		{	
			$("#legende").html("&nbsp;");
		});
});

