$(document).ready(function(){
		
	// set opacity
	$('.languageDropDown').css({'opacity': '0'});
	$('.worldwideItems').css({'opacity': '0'});
	
	// mouse over 'language' image
		$('#language').mouseenter(function() {
			$(this).find('.languageDropDown').css({'display': 'block'});
		$(this).find('.languageDropDown').stop().animate({'opacity': '1'}, {duration: 100});
	});
	$('#language').mouseleave(function() {
		$(this).find('.languageDropDown').stop().animate({'opacity': '0'}, {duration: 100, complete: function() {
			$(this).css({'display': 'none'});
		}});
	});
	
	
	
	// mouse over 'jdn worldwide' within dropdown
	$('.worldwide').mouseenter(function() {
	
		$(this).find('.worldwideHeader').css({'background-image': 'url("fileadmin/templates/img/language_worldwideHeader_over.png")'});
			$(this).find('.worldwideItems').css({'display': 'block'});
		$(this).find('.worldwideItems').stop().animate({'opacity': '1'}, {duration: 100});
	});
	$('.worldwide').mouseleave(function() {
		$(this).find('.worldwideHeader').css({'background-image': 'url("fileadmin/templates/img/language_worldwideHeader.png")'});
		$(this).find('.worldwideItems').stop().animate({'opacity': '0'}, {duration: 100, complete: function() {
			$(this).css({'display': 'none'});
		}});
	
	});

});