$(document).ready(function() {
	$("ul.sf-menu").supersubs({
		minWidth: 5, // minimum width of sub-menus in em units
		maxWidth: 50, // maximum width of sub-menus in em units
		extraWidth: 0.1 // extra width can ensure lines don't sometimes turn over
	}).superfish({
		delay: 500, // delay on mouseout
		animation: {opacity:'show',height:'show'}, // fade-in and slide-down animation
		speed: 'fast', // faster animation speed
		autoArrows: false, // generation of arrow mark-up
		dropShadows: true // drop shadows
	});
	
	$("#langswitch img.de_d").hover(function() {
		$(this).attr("src","fileadmin/bender-worldwide/img/de.gif");
			}, function() {
		$(this).attr("src","fileadmin/bender-worldwide/img/de_d.gif");
	});
	$("#langswitch img.en_d").hover(function() {
		$(this).attr("src","fileadmin/bender-worldwide/img/en.gif");
			}, function() {
		$(this).attr("src","fileadmin/bender-worldwide/img/en_d.gif");
	});

});

