$(document).ready(function(){
	$('.marquee').each(function(){
		if ($(this).next())
		{
			var marquee_options;
			try{ eval('marquee_options = '+$(this).next().html()); } catch(e) {}
			if (marquee_options)
			{
				for (i in marquee_options)
				{
					$(this).attr(i,marquee_options[i]);
				}
			}
		}
	});
	$('.marquee').marquee('jqmarquee');
});
