$(document).ready(function(){
	$('#moreLanguages').hide();
	$('#languages').click(function() {
	  	// Act on the event
		$('#moreLanguages').slideToggle("fast");
	  });
	xOffset = 380;
	$('.kund').hover(function(e) {
		// Stuff to do when the mouse enters the element;
		$('#kunderRight .kundlogo:visible').stop();
		li_index=$('.kund').index($(this)[0]);
		Offset = (e.pageY-xOffset);
		if (Offset < 10){ Offset =10;}
		$('#kunderRight .kundlogo').eq(li_index).show().css("top",(Offset) + "px").animate({opacity: 1,top:"0"}, 300 );
		}, function() {
		// Stuff to do when the mouse leaves the element;
		$('#kunderRight .kundlogo').eq(li_index).stop().hide().animate({opacity: 0}, 0 );
	});
});
