window.addEvent('domready', function(){ //debugger; //THIS CONTROLS THE SLIDEDOWN WINDOW AND THE DIV'S DISPLAY - BUT STILL LOOKING FOR WHAT CRITERIA ARE USED TO DETERMINE WHEN TO DISPLAY REVIEW DIV AND WHEN TO DISPLAY THE SUBMISSION DIV
	var tabs = $('controlTabs').getElements('a');
	tabs.forEach(function(el,i) {
		el.addEvent('click', function() {
			tabs.removeClass('active');
			if (i === 0) { //alert('i === 0');
				
				if (window.ie6)
				{				
				
				 	$('contentwrap').setStyle('background-image', 'url(/en_ca/products/images/bg_reviews.jpg)');
                    $('contentwrap').setStyle('background-repeat', 'no-repeat');
                            
                    $('promoBar').setStyle('background-image', 'url(/en_ca/products/images/bg_reviews.jpg)');
                    $('ControlTabs').setStyle('background-image', 'url(/en_ca/products/images/bg_reviews.jpg)');
				
				}
				
				if ($('bvContainer').getStyle('display') == 'none') {
					el.addClass('active');
					$('bvContainer').setStyles({
						'display': 'block',
						'height': '552px'
					});
					/*$('promoBar').setStyle('height', '740px');*/
					$('promoBar').setStyle('height', '580px');
					/*$('promoBar').setStyle('height', '180px');					
					$('slidedown_content').setStyle('height', '140px');*/
					$('bvContainer1').setStyle('display', 'none');
					$('callout1_img').src = '/en_ca/products/images/product_page/callout_left_open.png';

					
				} else {
					$('bvContainer').setStyle('display', 'none');
					$('promoBar').style.cssText = '';
					$('promoBar').setStyle('height', '0px');
					$('callout1_img').src = '/en_ca/products/images/product_page/callout_left.png';
					
				}
			} else if (i === 1) {//alert('i === 1');
				if ($('bvContainer1').getStyle('display') == 'none') {
					el.addClass('active');
					$('bvContainer1').setStyles({
						'display': 'block',
						'height': '552px'
					});
					/*$('promoBar').setStyle('height', '740px');*/
					$('promoBar').setStyle('height', '580px');
					$('bvContainer').setStyle('display', 'none');
				} else {
					$('bvContainer1').setStyle('display', 'none');
					$('promoBar').style.cssText = '';
				}
			}
		});
	});
});
