$(function(){
	$("marquee a").mouseover(function(){
		$(this).parent().parent()[0].stop();
	});

	$("marquee a").mouseout(function(){
		$(this).parent().parent()[0].start();
	});
});