(function($) {
 var ie7WarningEnabled = false;
 if ( ie7WarningEnabled && $.browser.msie && $.browser.version.substr(0,1) < 8 ) {
   $(document).ready(function() {
     var $home = $('#home'),
         imagePath = "/images/global/IE7-warning-message.png",
         ieUpgradeUrl = "http://www.microsoft.com/windows/internet-explorer/default.aspx",
         clickHereStyle = "zoom: 1; text-decoration: none; position: absolute; top: 222px; left: 280px; width: 56px; height: 15px;";
         closeStyle = "zoom: 1; text-decoration: none; position: absolute; top: 62px; left: 512px; width: 39px; height: 15px;";

     $home
       .data('oldcontent', $home.html())
       .html('<img src="'+ imagePath +'" />' +
             '<a href="'+ ieUpgradeUrl +'" style="'+ clickHereStyle +'">' +
                 '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'+
             '</a>' +
             '<a class="close" href="#" style="'+ closeStyle +'">' +
                 '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'+
             '</a>'
            );
       $home.find('a.close').click(function() {
           $home.fadeOut(400, function() {
               $home.html($home.data('oldcontent'));
               $home.fadeIn(400, function() {
               });
           });
           return false;
       });
   });
 }
}(jQuery));

