function changePrice(from,to,id) {
	document.getElementById('occasionPrice'+from+id).style.display='none';
	document.getElementById('occasionPriceDescription'+from+id).style.display='none';
	document.getElementById('occasionPrice'+to+id).style.display='';
	document.getElementById('occasionPriceDescription'+to+id).style.display='';
}
function showCar(id) {
	document.location.href='index.php?id=.....';
}
function showButtons(obj) {
	obj.style.filter='alpha(opacity=80)'
}
function hideButtons(obj) {
	obj.style.filter='alpha(opacity=20)'
}
