$(document).ready(function() {

    $('td.left.selected').css('background', 'background: url("../images/hormenu_left_sel.png") top left no-repeat');
    $('td.right.selected').css('background', 'background: url("../images/hormenu_right_sel.png") top right no-repeat');

    $('.mainMenu td.item').mouseover(function(mo) {
        $(this).css('background', '#FFF url("../images/hormenu_repeat_sel.png") top left repeat-x');
        $(this).find("a").css('color', '#FFF');
        var index = $(".mainMenu td").index(this);
        $(".mainMenu td:eq(" + (index - 1) + ")").css('background', '#FFF url("../images/hormenu_left_sel.png") top left no-repeat');
        $(".mainMenu td:eq(" + (index + 1) + ")").css('background', '#FFF url("../images/hormenu_right_sel.png") top right no-repeat');
    });

    $('.mainMenu td.item').mouseleave(function(mo) {
        if ($(this).hasClass('selected') == false) {
            $(this).css('background', '#FFF url("../images/hormenu_repeat.png") bottom left repeat-x');
            $(this).find("a").css('color', '#000');
            var index = $(".mainMenu td").index(this);
            $(".mainMenu td:eq(" + (index - 1) + ")").css('background', '#FFF url("../images/hormenu_left.png") bottom left no-repeat');
            $(".mainMenu td:eq(" + (index + 1) + ")").css('background', '#FFF url("../images/hormenu_right.png") bottom right no-repeat');
        }
    });

});
