$(document).ready(function() {

    $("ul#nav-one li").hover(function() { //Hover over event on list item
        $(this).css({ 'background' : 'none'}); //Add background color and image on hovered list item
        $(this).find("span").show(); //Show the subnav
    } , function() { //on hover out...
        $(this).css({ 'background' : 'none'}); //Ditch the background
        $(this).find("span").hide(); //Hide the subnav
    });

    $('#image_fade').innerfade({
            speed: 'slow',
            timeout: 6000,
            type: 'sequence',
            containerheight: '315px'
    });

});


