$(document).ready(function(){

$("#alphaMenu_one").fadeTo("fast", 0);
$("#alphaMenu_two").fadeTo("fast", 0);

$(".tributeLink").fadeTo("fast",.3);
$("#portLeftBG").fadeTo("fast", 0);


	
	$("#portLeftColumn").hover(
	
		function()
					{
		
		$("#alphaMenu_one, #alphaMenu_two, #portLeftBG").fadeTo("slow", .8);
		
		},
		
		function(){
		
		$("#alphaMenu_one, #alphaMenu_two, #portLeftBG").fadeTo("slow", 0);

	
	});

	
	
	$(".thumbImg").click(function(){

		a = this.id;

		b = "#" + a + "_LG";

		$(".vehicle:visible").fadeOut("slow", function(){

		$(b).fadeIn("slow");
		
		
		});
	});


});