
			
// **** li in ie 6 ****
$(document).ready(function(){ 
	$("#menu-mainmenu li").hover( 
		function() {$(this).children('ul').addClass("iehover"); }, 
		function() { $(this).children('ul').removeClass("iehover"); } 
	); 
});



jQuery(document).ready(function($) {

			/****************************** FancyBox **************************************/
			
			$("a.Lightbox").fancybox({
				'titlePosition'	: 'over'
			});

			
			$("a[rel=Gallery]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});


			$(".Iframe").fancybox({
				'width'				: '95%',
				'height'			: '95%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
			
			$(".SWF").fancybox({
				'padding'			: 0,
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});



			
});

