$.fn.flash = function(s) {
    return this.each(function() {
        c = $(this);
        if (s==null) {
            s = 2000;
        }
        c.fadeIn('slow',function() {
            setTimeout(function() {
                c.fadeOut('slow');
            },s);
        });
    });
}
$(document).ready(function() {
    // NAVIGATION
    $('#navigation ul li').hover(function() {
	$(this).children('ul').width($(this).width());
	$(this).children('ul').slideDown('normal');
    },function() {
	$(this).children('ul').slideUp('normal');
    });
});