$(document).ready(function(){
	
	$(".thumbs a").click(function(){

		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");

		$("#largeImg").attr({ src: largePath, alt: largeAlt });

		$("h2 em").html(" (" + largeAlt + ")"); return false;
	});

	// for the tabs in the used car admin section
	$('#container-1 > ul').tabs();

	// for the cars rotator on the home page
	$('#cars').innerfade({ speed: 'slow', timeout: 5000, type: 'sequence', containerheight: '412px' });

}); //close doc ready
