// JavaScript Document

$(document).ready(function() {
						   
	//When mouse rolls over
	$("#navigation ul li").mouseover(function(e) {
		$(this).find("ul").stop().animate({ height: 'show' }, { queue: false, duration: 300, complete: function() { $(this).css("height", "auto"); } });
	} );
	
	//When mouse is removed
    $("#navigation ul li").mouseout(function(e) {
        $(this).find("ul").stop().animate({ height: 'hide' }, { queue: false, duration: 100, complete: function() { $(this).css("height", "auto"); } });
    });
});
