$(function() {
    $('#languages').droppy({speed: 100});
});


$(document).ready(function () {
    

    $('ul#mainNav li.first').hover(
        function() {
            //$(this).parent().css('background-color', 'red');
            //$(this).stop().children('.childList').show(200);
            $(this).addClass("openChild");
            $(this).children('.subList').css("display", "block");
            $(this).children('.subList').stop().animate({opacity: 1}, 200, function() {
    // Animation complete.
  });



	}, function() {
		//$(this).stop().children('.childList').hide(200);
                $(this).removeClass("openChild");
                $(this).children('.subList').css("display", "none");
                $(this).children('.subList').stop().animate({opacity: 0}, 200);
	});
});
