var whichTab = 'showerDoors';

$(function() {

	$("#customShowerDoors-tabs img").click(
		function() {
			whichTab = $(this).attr("id");
			$(".customShowerDoors-table").css("display","none");
			$("#customShowerDoors-" + whichTab).css("display","block");
			$(this).attr("src", $(this).attr("src").replace("-off","-on"));
            var img = $('#leftColumn img').attr("src");
            if (whichTab == "bathDoors") {
                $('#leftColumn img').attr("src", img.replace('shower', 'bath'));
                $("#showerDoors").attr("src", $("#showerDoors").attr("src").replace("-on","-off"));
			} else {
                $('#leftColumn img').attr("src", img.replace('bath', 'shower'));
                $("#bathDoors").attr("src", $("#bathDoors").attr("src").replace("-on","-off"));
			}
		}
	);
});