$(document).ready(function() {
    $('#cyclePics').cycle({

		fx: 'fade',
		speed:    1000, 
   		timeout:  6000,
		next:   '#nextButton', 
		prev:   '#prevButton',
		 pager:  '#nav'
	});
	
	

		$(".referenz").fancybox({
		'autoScale'			: 'false',
		'width':750,
		'height':478,
		'showNavArrows'		: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});



	$("#headMenue li.lev1").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(0,function(){
		
		$(this).parent().addClass("hassubmenue");
		});

		},function(){
		$(this).find('ul:first').css({visibility: "hidden"}).hide();
		$(this).removeClass("hassubmenue");
		});
	
});
	

