$(document).ready(function(){
	theMarquee();
});

function theMarquee()
{
	var thetext = $('.marquee span').text()
	$('.marquee').html('<marquee>' + thetext + '</marquee>');
}
