function positionPromoInIE6() {
	// If pagesLeft exists and browser is IE6
	if ($('pagesLeft') && window.ie6) {
	    var promoLeft = $('pagesLeft').getLeft();
	    promoLeft = promoLeft + 630;
		if ($('promo')) {
			// If is the 3 Adsl grouped boxes, we need to position the special offer box down more.
			$('promo').setStyles({position: 'absolute', top: '176px', left: promoLeft + 'px'});
		}
	}
	// When viewing the 3 adsl boxes we need to move the special offer box down more.
	var version = navigator.appVersion;
	if ($('pagesLeft')) {
		if ($('adsl_boxes')) {
			if ($('special_offer')) {
				if(window.ie) {
					$('special_offer').setStyles({position: 'relative', top: '-35px'});
				} else if (version.toLowerCase().indexOf("mac")!=-1) {
					$('special_offer').setStyles({position: 'relative', top: '72px'});
				} else {
					$('special_offer').setStyles({position: 'relative', top: '27px'});
				}
			}
		}
	}
	
}// end positionPromoInIE6

// After DOM has loaded call positionPromoInIE6
window.addEvent('domready', function() {
    positionPromoInIE6();
});
// On Browser resize call positionPromoInIE6
window.addEvent('resize', function() {
    positionPromoInIE6();
});
