function logoRotate() {
    
    var $active = $('#logo-rotate .active');
    var $next =  $active.next().length ? $active.next() : $('#logo-rotate :first');

    $active.find('img').fadeOut(1000, function(){
        $active.hide();
        $active.removeClass('active');
        $next.show();
        $next.find('img').fadeIn(1000, function(){
            $next.addClass('active');
        });
    });
    setTimeout( "logoRotate()", 3000);
}

$(function() {
    logoRotate();
});

function doSearch(){
    document.location.href= URL_BASE + 'Isci/' + $('#searchText').val();
}

function focusSearchText(){
    $("#searchText").select();
}

