var Pic = new Array('images/landcruiserPradoExpo.jpg','images/voltChevroletExpo.jpg', 'images/mercedesBenzExpo.jpg','images/cruzeChevroletExpo.jpg', 'images/volkswagenPoloExpo.jpg', 'images/yamahaR1Expo.jpg');
var pause = 5;	  
counter = 0;
function runSlideShow2() {
	//alert(Pic[counter]);
	$('#SlideShow').fadeOut("slow", function() {
		$('#SlideShow').attr("src", Pic[counter]);
		$('#SlideShow').fadeIn("slow");
	})
	counter++;
	if(counter >= Pic.length) {
		counter = 0;
	}
}
window.setInterval(runSlideShow2, pause*2000); 
$(document).ready(function() {
	runSlideShow2();
})