$(function() {
	$("#car").cycle();
function hidenax(){$("#car").cycle({timeout:0});$("#car img").each(function(n,element){$(element).hide();});}
$("#btn1").mouseover(function() {
  hidenax();
  $("#car #car1").show();
  $("#car #car1").css("opacity",1);
});
$("#btn2").mouseover(function() {
  hidenax();
  $("#car #car2").show();
  $("#car #car2").css("opacity",1);
});
$("#btn3").mouseover(function() {
  hidenax();
  $("#car #car3").show();
  $("#car #car3").css("opacity",1);
});
$("#btn4").mouseover(function() {
  hidenax();
  $("#car #car4").show();
  $("#car #car4").css("opacity",1);
});
$("#btn5").mouseover(function() {
  hidenax();
  $("#car #car5").show();
  $("#car #car5").css("opacity",1);
});
$("#btn1, #btn2, #btn3, #btn4, #btn5").mouseout(function(){$("#car").cycle({timeout:3000});});

});

