
Spry.Utils.addLoadListener(function() {

marqueeInit({
	uniqueid: 'mycrawler',
	style: {
		'padding': '5px',
		'width': '450px',
		'background': 'lightyellow',
		'border': '1px solid #CC3300'
	},
	inc: 3, //speed - pixel increment for each iteration of this marquee's movement
	mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
	moveatleast: 1,
	neutral: 150,
	savedirection: true
});



marqueeInit({
	uniqueid: 'mycrawler2',
	style: {
		'padding': '2px',
		'width': '400px',
		'height': '140px'
	},
	inc: 2, //speed - pixel increment for each iteration of this marquee's movement
	mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
	moveatleast: 1,
	neutral: 150,
	savedirection: true
});


});
