(function($){
	$.floatFix = function() {
		if ($.browser.msie) {
			if (parseInt($.browser.version) == 6) {
				$("div").each(function() {
					if ($(this).css('float') != 'none' && $(this).css('margin-left') != 'auto') {
						$(this).css('margin-left', parseInt($(this).css('margin-left'))/2+'px');
					}
					if ($(this).css('float') != 'none' && $(this).css('margin-right') != 'auto') {
						$(this).css('margin-right', parseInt($(this).css('margin-right'))/2+'px');
					}
					if ($(this).attr('class') == 'mainNav') {
						$(this).find('table').attr('width', '955');
					}
					if ($(this).attr('class') == 'subNav') {
						$(this).css('position', 'absolute');
					}
				});
			}
		}
	};
})(jQuery);
