// JavaScript Document
//C79A63

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


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