if(screen.width <= '800') {
	marqueeInit({
	uniqueid: 'mycrawler',
	style: {
		'padding': '5px',
		'padding-top': '30px',
		'color': '#ffff00',
		'font-size': '16pt',
		'font-weight': 'bold',
		'width': '260px',
		'background': 'transparent',
		'border': '0px solid #CC3300'
	},
	inc: 8, //speed - pixel increment for each iteration of this marquee's movement
	mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
	moveatleast: 4,
	addDelay: 400,
	neutral: 150,
	savedirection: true
	});
} else if(screen.width > '800' && screen.width <= '1024') {
	marqueeInit({
	uniqueid: 'mycrawler',
	style: {
		'padding': '5px',
		'padding-top': '30px',
		'color': '#ffff00',
		'font-size': '16pt',
		'font-weight': 'bold',
		'width': '320px',
		'background': 'transparent',
		'border': '0px solid #CC3300'
	},
	inc: 8, //speed - pixel increment for each iteration of this marquee's movement
	mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
	moveatleast: 4,
	addDelay: 400,
	neutral: 150,
	savedirection: true
	});
} else if (screen.width > '1024' && screen.width < '1600') { 
	marqueeInit({
	uniqueid: 'mycrawler',
	style: {
		'padding': '5px',
		'padding-top': '30px',
		'color': '#ffff00',
		'font-size': '16pt',
		'font-weight': 'bold',
		'width': '470px',
		'background': 'transparent',
		'border': '0px solid #CC3300'
	},
	inc: 8, //speed - pixel increment for each iteration of this marquee's movement
	mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
	moveatleast: 4,
	addDelay: 400,
	neutral: 150,
	savedirection: true
	});
} else {
	marqueeInit({
	uniqueid: 'mycrawler',
	style: {
		'padding': '5px',
		'padding-top': '30px',
		'color': '#ffff00',
		'font-size': '16pt',
		'font-weight': 'bold',
		'width': '440px',
		'background': 'transparent',
		'border': '0px solid #CC3300'
	},
	inc: 8, //speed - pixel increment for each iteration of this marquee's movement
	mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
	moveatleast: 4,
	addDelay: 400,
	neutral: 150,
	savedirection: true
	});
}
