$(document).ready(function(){
	
	setInterval("switchScreen()", 3000);
	
});
function switchScreen(){
	$('#test-drive-contain .monitor img:last').fadeOut('slow', function(){
		$(this).prependTo($(this).parent()).show();
	});
}
