Event.observe(window,'load',function(){
	try{
		$$('.tour-teaser-box').each(function(name, index) {
                   if (index % 2){
}else{
             
name.style.marginRight = '65px';          
}
 
                });

	}catch(e){}
	
// sidebar

	var headerHeight = $$('.header')[0].offsetHeight;
	var theContainer = $$('div.container')[0].offsetHeight - headerHeight;
	var theMainContent = $$('div.main-content')[0].offsetHeight;
	var theHeight = Math.max(theContainer,theMainContent);
	//$$('.sidebar')[0].style.height = (document.body.scrollHeight || document.documentElement.scrollHeight) - 47 - 24 + 'px';
	if(document.all){
		$$('.sidebar')[0].style.height = theHeight + 189 + 'px';
		$$('.main-content')[0].style.height = theHeight + 2 + 'px';
	}else{
		$$('.sidebar')[0].style.height = theHeight + 189 + 'px';
		$$('.main-content')[0].style.height = theHeight + 'px';
	}
	
})
