$(document).ready(function(){

	$(".menu li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

	$(".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();
  $('#container-1 > ul').tabs();

}); //close doc ready