function animateCard() {
	$('div.wrap').animate({
		scrollLeft: ($('div.content').outerWidth() - $('div.wrap').outerWidth())
	}, 40000); 
}

$('document').ready(function (){
	$('div.wrap').scrollLeft(0);
	pid = setTimeout('animateCard()', 3000);
});
