/* Effects file for nice car company website */



$(document).ready(function(){
	// insert our image preloader and image roller for homepage
	preload_images();
});

function preload_images(){
	var x = new Array();
	x[0] = "/images/nice-shot-1.png";
	x[1] = "/images/nice-shot-2.png";
	x[2] = "/images/nice-shot-3.png";
	x[3] = "/images/nice-shot-4.png";

	$('#home_feature').animate({
			opacity: 0.0
	}, 5000, function(){
		$('#home_feature').attr("src","/images/nice-shot-2.jpg");
	}).animate({
			opacity: 1
	}, 3000 ).animate({
			opacity: 0.0
	}, 5000, function(){
		$('#home_feature').attr("src","/images/nice-shot-3.jpg");
	}).animate({
			opacity: 1
	}, 3000 ).animate({
			opacity: 0.0
	}, 5000, function(){
		$('#home_feature').attr("src","/images/nice-shot-4.jpg");
	}).animate({
			opacity: 1
	}, 3000 ).animate({
			opacity: 0.0
	}, 5000, function(){
		$('#home_feature').attr("src","/images/nice-shot-1.jpg");
	}).animate({
			opacity: 1
	}, 3000 )
}

