﻿//IE6 hack to avoid shifting the center div to the right
//when hoovering the menu

$(document).ready(function () {
    if ($.browser.msie && parseFloat($.browser.version) < 7) {
        $('#center').width('440px');

        $('#menu').hover(function () {
            $('#center').css('margin-left', '8px');
        },
                                     function () {
                                         $('#center').css('margin-left', '31px');
                                     }); //end hover
    } 
});
