$(document).ready(function() {
        jQuery.each(jQuery.browser, function() {
                if($.browser.msie && jQuery.browser.version.substr(0) == "6") {
                        window.location = "http://idontsupportie6.com";
                }
  });
});

$(document).ready(function() {
        $('#content a').hover(function() {
                $(this).animate({backgroundColor: '#FCBEE4'}, 300);
        });
        $('#content a').mouseleave(function() {
                $(this).animate({backgroundColor: '#BEE4FC'}, 600);
        });
});

// var repositionPage = function() {
//         margin = ($(document).height() - $('#page').height()) / 2 - 100;
//         $('#page').css('marginTop', margin + 'px');
// };
// 
// $(document).ready(repositionPage);
// $(window).resize(repositionPage);

