

/**
 * 
 * 
 * All main fixes for ie6
 * 
 * 
 */



jQuery(document).ready(function(){
  
  
  if (jQuery.browser.msie && (jQuery.browser.version == '6.0')){
    
    
    
    
    // !!! REMOVE, TEMP fix for index large footer
    
    $('.largefooter').removeClass('largefooter');
    
    
    
    
    // Fixing bottom space (temp. FIX)
    
    //alert($('.footer').position().top + $('.footer').height());
    //alert($('.footer').height());
    //alert($(window).height());
    
    var diff = $(window).height() - $('.footer').position().top + $('.footer').height();
    
    if (diff > 0) $('.footer').css('margin-top', diff - $('.footer').height() * 2);
    
    
    
    
    
    
    
    
    
    
    
    
    
  }
  
});



















































