var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;

if (IE6) {
	var p = p || {};
	
	p.ieWidthFixer = function() {
		var affectedElements = $('#non-footer, #footer-container, #wrapper');
		var bodyWidth = $('body').width();
		
		if (bodyWidth > 1000 && bodyWidth < 1300) {
			affectedElements.css('width', 'auto');
		} else if (bodyWidth > 1300) {
			affectedElements.css('width', '1300px');
		} else {
			affectedElements.css('width', '1000px');
		}
	};
	
	$(function() {
		$('ul#navigation-primary li.level-1').hover(function() {
			$(this).find('ul').show();
		}, function() {
			$(this).find('ul').hide();
		});
	});
	
	$(window).resize(function () {
		p.ieWidthFixer();
	});
}