function Show(idName) {
	var obj = document.getElementById(idName);
	if (obj) {
		obj.style.display = "block";
	}
}
function Hide(idName) {
	var obj = document.getElementById(idName);
	if (obj) {
		obj.style.display = "none";
	}
}


// Jquery
$(document).ready(function() {
	//form highlights
	$(".formcell").click( function() {
		$(".form_selected").removeClass('form_selected');
		$(this).addClass('form_selected');
	});
	
	
	$(".car_info").hover(function() {
		$(this).addClass("car_over");
	},
	function() {
		$(this).removeClass("car_over");
	});
	
	
});