//Mootools items
window.addEvent('domready', function() {	
	//Remove onfocus dotted outline
	$$('a.mainnav').addEvents({'focus': function(e) {this.blur();}});
	
	//Smooth scrolling
	new SmoothScroll({ duration:700 }, window);
	
	if ($('tab_content')) {
		var tabPane = new TabPane('tab_content');
	}
	
	if ($('scroller')) {
		var myVProducts = new ScrollBar('scroller', 'bar', 'slider', {});
		
		$('left').addEvent('click', function(e){
			e.stop();
			myVProducts.move2(-60);
		});
		$('right').addEvent('click', function(e){
			e.stop();
			myVProducts.move2(60);
		});
		
		Cufon.replace('#scroller a span', {fontFamily: 'Fontin', hover: true});
	}
	if ($('buttons')) Cufon.replace('#buttons a span', {fontFamily: 'Fontin', hover: true});
		
	Cufon.replace('#mainnav a.mainnav', {fontFamily: 'Gill Sans MT', hover: true});
	Cufon.replace('#leftcontent a', {fontFamily: 'Gill Sans MT', hover: true});
	Cufon.replace('h1,h2,h3', {fontFamily: 'Gill Sans MT'});
	
	//Menu
	if ($('mainnav')) {
		var myMenu = new UvumiDropdown("mainnav",{ 
			duration:35, 
			delay:1000
		});
	}
});







