$(document).ready( function()
{
    $("#banner-carousel-controls").show();

    textReplacement($('#search-text'));

    $('.sidenav > li').hover(flyout, flyin);

    function flyout(){
        $(this).find('a:first').addClass('selected');
        $(this).find('ul').show();
    }

    function flyin(){
        $(this).find('a:first').removeClass('selected');
        $(this).find('ul').hide();
    }

});

//for the homepage
function timer(){
    $("#banner-carousel").scrollable({ circular: true }).navigator({
        navi: "#banner-carousel-thumbs",
        naviItem: 'a'
    }).autoscroll(6000);
    $('#banner-carousel-controls').show();
    $('#banner-carousel-thumbs li:first a').addClass('active');
}

function noTimer(){
    $("#banner-carousel").scrollable({ circular: true }).navigator({
        navi: "#banner-carousel-thumbs",
        naviItem: 'a'
    });
    $('#banner-carousel-controls').show();
    $('#banner-carousel-thumbs li:first a').addClass('active');
}
