/**
 * @author Doug Clark
 */
visitUs = function(elementToActivate) {

	$('airlines').hide();
	$('hotels').hide();
	$('restaurants').hide();
	$('news').hide();
	$('resorts').hide();
	
	new Effect.Appear(elementToActivate, {duration: 1, fps: 50});

}

lrSpecs = function(elementToActivate) {

	$('history').hide();
	$('changes').hide();
	$('production').hide();
	$('msrp').hide();
	$('equip').hide();
	$('options').hide();
	$('colors').hide();
	$('drivetrain').hide();
	$('brakes').hide();
	$('other').hide();
	$('ad').hide();
	
	new Effect.Appear(elementToActivate, {duration: 1, fps: 50});

}

Models = function(elementToActivate) {

	$('fj40').hide();
	$('fj43').hide();
	$('fj45').hide();
	$('baja').hide();
	$('features').hide();
	
	new Effect.Appear(elementToActivate, {duration: 1, fps: 50});

}