crawler2 = function() {

var str = $('#mycrawler').html();

str = str+str;
$('#mycrawler').html(str)

$("#mycrawler div:nth-child(2)").removeClass('p1')
.addClass('p2');

len = $('.p1').width();
$('.p2').css('left',len+"px");


$("#mycrawler").mouseover(function() {
		clearTimeout(t);
});

$("#mycrawler").mouseout(function() {
		t=setTimeout("timedCount()",timeOut);
});

}

c=0;
timeOut = 5;
var t;
t=setTimeout("timedCount()",timeOut);



function timedCount() {
len = $('.p1').width();

$('.p1').css('left',-c+"px");
$('.p2').css('left',len-c+"px");
	c++;
	if (c>len) {c=0;}
	t=setTimeout("timedCount()",timeOut);
}

