// Get Scroller for IE
function getScrollerWidth(){var inner=document.createElement('p');inner.style.width='100%';inner.style.height='100px';var outer=document.createElement('div');outer.style.position='absolute';outer.style.top='0px';outer.style.left='0px';outer.style.visibility='hidden';outer.style.width='200px';outer.style.height='150px';outer.style.overflow='hidden';outer.appendChild(inner);document.body.appendChild(outer);var w1=inner.offsetWidth;outer.style.overflow='scroll';var w2=inner.offsetWidth;if(w1===w2){w2=outer.clientWidth;};document.body.removeChild(outer);return (w1-w2);}

var controlDown = false;
window.addEvent('domready', function(){	
	// Breadcrumb Links
	$$('.breadcrumbLinks a').each(function(element) {
		var fx = new Fx.Morph(element, {'duration': 200, 'wait':false, 'transition': Fx.Transitions.Quart.easeInOut});
		element.addEvent('mouseenter', function(){
			fx.start({
					 'padding-left': 23,
					 'padding-right': 34
			});
		});
		element.addEvent('mouseleave', function(){
			fx.start({
					 'padding-left': 3,
					 'padding-right': 24
			});
		});
	});	
	if($('viewTopicPage')){
		var scrollBarSize = getScrollerWidth();
	}
});
	
	

