/**
 * Скрипт для управления демо-туром по сайту
 * треубется jQuery 1.3+
 */
var tourx = {
    next: 1,
    count: 6,
    show: function(num){
        if (window.location.pathname.indexOf('tour') == -1){
            window.location.href='/tour/' + num + '.html';
            return false;
        }

        /*
        var box = $('div#contentInnerWrapper').length > 0?$('div#contentInnerWrapper'):$('div#contentArea');
        box.css('background', 'white no-repeat right bottom url(/images/tourx/' + num + '.jpg)');
        */
       
        if ($.browser.msie) $('.introWrapper').css('width', '688px');
        else $('.introWrapper').css('width', '692px');
        
        $('ul.tours li').removeClass('selected');
        $('ul.tours li#tour_item_' + num).addClass('selected');
        $('.introWrapper').fadeOut(1000);
        var box = $('#intro' + num);
        box.fadeIn(1000);

        return false;
    }
}