    var name = "#floatmenu";  
    var menuYloc = null;  
      
jQuery(document).ready(function(){ 
     menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px")))  
     $(window).scroll(function () {  
         var offset = menuYloc+$(document).scrollTop()+"px";  
         $(name).animate({top:offset},{duration:900,queue:false});  
     });
	  
	 jQuery('.accordion').accordion({ 
		active: true,
		header: '.head',
		event: 'mouseover',
		autoHeight: false,
		navigation: true
 
	});
	 
	 jQuery('.accordion').mouseleave(function(){
		tObj=setTimeout("$('.accordion').accordion('activate', false);",200);
			}).mouseenter(function(){
				clearTimeout(tObj);
	});
	 
	 $("a.gallerie").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	900, 
		'speedOut'		:	200,
		'overlayOpacity' : 0.8,
		'overlayColor' : '#000000',
		'overlayShow'	:	true
	});
	 
	$("a[rel=lightbox]").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	900, 
		'speedOut'		:	200,
		'overlayOpacity' : 0.8,
		'overlayColor' : '#000000',
		'showNavArrows' : false,
		'overlayShow'	:	true
	});

 });  
