var baseurl = "http://192.168.1.111:8080/furniss/";

$(document).ready( function(){
    $('#top-navigation ul li').hover(function () {
        $('ul', this).css("z-index","1000").stop(true,true).fadeIn(100);},
        function () {$('ul', this).css("z-index","900").stop(true,true).delay(200).fadeOut(150);}
    );

    $('#header .pics').innerfade({ speed: 1500, timeout: 5000, type: 'sequence', containerheight: '240px;' });

});



