
/*
// JavaScript Document
alert ('test');

Window.onDomReady(function(){
/*
var scroll2 = new Scroller('itemsWrapper', {area: 200, velocity: .5});
// itemsWrapper
$('itemsWrapper').addEvent('mouseover', scroll2.start.bind(scroll2));
$('itemsWrapper').addEvent('mouseout', scroll2.stop.bind(scroll2));

var arr = new Array();
//arr = $('itemsWrapper').getElementsByTagName("li");
arr = document.getElementById('theItems').getElementsByTagName("li");

 $$('.item').each(function(stuffButton) { 
	
	var fx = new Fx.Styles(stuffButton, {duration:200, wait:false});
						   
	stuffButton.addEvent('mouseover',function( current_s_id ){  
		if ( current_s_id==2 ) {
			a_color = '#fff';
		} else {
			a_color = '#000';
		}
		
		fx.start({
		'background-color': a_color,
		});
		var spans = stuffButton.getElementsByTagName('span');
		$$(spans).each(function(targ) {
			targ.style.visibility = "visible";
		});
	});  
	
	stuffButton.addEvent('mouseout',function( current_s_id ){  
		if ( current_s_id==2 ) {
			a_color = '#000';
		} else {
			a_color = '#fff';
		}

		fx.start({
		'background-color': a_color,
		});
		var spans = stuffButton.getElementsByTagName('span');
		$$(spans).each(function(targ) {
			targ.style.visibility = "hidden";
		});
	});  
});
 
//$('theItems').style.width = String(arr.length * 230) + 'px';
//alert(String(arr.length * 230));
});
//do_online_shipping();
*/
