if ((jQuery.browser.msie) && (parseInt(jQuery.browser.version) < 7)) {
		/* Script to enable hover function */
       $().ready(function() {
              $('.blok').hover(
                   function() {
                       $(this).addClass('hovered');
              }, function() {
                    $(this).removeClass('hovered');
              }
           );
       });
       $().ready(function() {
              $('.blok_r').hover(
                   function() {
                       $(this).addClass('hovered');
              }, function() {
                    $(this).removeClass('hovered');
              }
           );
       });
}