window.addEvent('load', function(){
	var left = new BySlideMenu('left', {pinMode: 'mouseover', containerHeight: 510, containerWidth: 366, defaultIndex: 1, compressSize: '41', duration: 500});
});
	/* lade jQuery */
    jQuery(document).ready(function(){ 
		// fade Accordion links
		jQuery('#left').hide().fadeIn(1000);
		
        /* SUCKERFISH Menu */        
		jQuery("#navigation ul").superfish({
		autoArrows : false,
		delay: 0,
		speed: 'slow',
		animation: {opacity:'show',height:'show'},
		pathLevels: 2
		});
		
		// fuege Pfeil zu 2. Level hinzu, sofern ein 3. Level vorhanden ist
		jQuery("#navigation ul li ul li ul").parent().addClass("arrow");
		
		// Hover-Effekt bei 2. Level
		jQuery("#navigation ul li ul li").hover(function(){
			jQuery(this).css({backgroundColor: '#0086cb'}).addClass("active");
			jQuery(this).find("a").css({color: '#ffffff'});
			}, function() {
			jQuery(this).css({backgroundColor: '#ffffff'}).removeClass("active");
			jQuery(this).find("a").css({color: '#5a5a5a'});
		});
		
		// Galerie
		jQuery("a[rel^='prettyPhoto']").prettyPhoto({showTitle:false, theme: 'light_rounded'});
		
		jQuery('#content').jScrollPane({showArrows:true, scrollbarWidth: 15});
		
		jQuery('a[href*=.flv]').prepend('<img src="http://bfb-bitumen.de/wp-content/themes/bfb/images/television.png" alt="Video" /> ');
		
		jQuery('ul.download-list li a').prepend('<img src="http://bfb-bitumen.de/wp-content/themes/bfb/images/application_put.png" alt="Download" /> ');
    });