var COUNTER =0;jQuery(function(){		//setTimeout		setInterval( function()							{															jQuery(".slideshow").animate({ marginLeft : -550 +"px"},																					"slow",																					"swing",																					function()																									{																										COUNTER++;																																																				if( COUNTER > 3 )																										{ COUNTER = 0; }																																																						jQuery(this).css({marginLeft:550 +"px"});																																																						jQuery(this).animate(																																				{ marginLeft:15+"px"},																																				"slow",																																				"swing"																																			);																											jQuery(this).html(																																			'<img src="http://overflowy.info/slideshowImage/slideshow_' +																																			COUNTER +																																			'.jpg" border="0" />'																																			);																									}																					);							}, 8000);// setTImeout});
