//MENU
$(document).ready(function(){
	$('a.carCatNav').click(function(e) { 
		e.preventDefault;
		return false;
	});

	$('a.carCatNav').click(function() {
		var theDiv = $(this).attr('title');
			$('#catBox03 ul ul').hide("slow");
			$('#catBox03 ul ul').addClass("boxInv");
			$("#" + theDiv).show("slow");
			$("#" + theDiv).addClass("boxVis");
	});
});

//IMAGE ROTATE
$(document).ready(function(){
	$('ul#featureBox').innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: '195px'
	});
});
