// JavaScript Document


function change_car(car){
	if(car == 1){
		$('logo_bottom').setStyle({
		  background: 'URL(images/logo_bottom_rr.png)'
		});
		$('main_image').setStyle({
		  background: 'URL(images/main_image_rr.jpg)'
		});
	}
	else if(car == 2){
		$('logo_bottom').setStyle({
		  background: 'URL(images/logo_bottom_b.png)'
		});
		$('main_image').setStyle({
		  background: 'URL(images/bentley.jpg)'
		});
	}
	else if(car == 3){
		$('logo_bottom').setStyle({
		  background: 'URL(images/logo_bottom_rolls.png)'
		});
		$('main_image').setStyle({
		  background: 'URL(images/rollsroyce.jpg)'
		});
	}
	else if(car == 4){
		$('logo_bottom').setStyle({
		  background: 'URL(images/logo_bottom_bmw.png)'
		});
		$('main_image').setStyle({
		  background: 'URL(images/bmw.jpg)'
		});
	}	
	else if(car == 5){
		$('logo_bottom').setStyle({
		  background: 'URL(images/logo_bottom_mer.png)'
		});
		$('main_image').setStyle({
		  background: 'URL(images/mercedes.jpg)'
		});
	}	
}