var image = false;

// when the DOM is ready
$(function () {
		$("img.1").click(function() {
			$("img.first").fadeIn(600);
			$("img.second").fadeOut(1);
			$("img.third").fadeOut(1);
			$("img.fourth").fadeOut(1);
			$("img.fifth").fadeOut(1);
			$("img.sixth").fadeOut(1);
			$("img.seventh").fadeOut(1);
		});
		
		$("img.2").click(function() {
			$("img.first").fadeOut(1);
			$("img.second").fadeIn(600);
			$("img.third").fadeOut(1);
			$("img.fourth").fadeOut(1);
			$("img.fifth").fadeOut(1);
			$("img.sixth").fadeOut(1);
			$("img.seventh").fadeOut(1);
		});
		
		$("img.3").click(function() {
		$("img.first").fadeOut(1);
			$("img.second").fadeOut(1);
			$("img.third").fadeIn(600);
			$("img.fourth").fadeOut(1);
			$("img.fifth").fadeOut(1);
			$("img.sixth").fadeOut(1);
			$("img.seventh").fadeOut(1);
		});
		
		$("img.4").click(function() {
			$("img.first").fadeOut(1);
			$("img.second").fadeOut(1);
			$("img.third").fadeOut(1);
			$("img.fourth").fadeIn(600);
			$("img.fifth").fadeOut(1);
			$("img.sixth").fadeOut(1);
			$("img.seventh").fadeOut(1);
		});
		
		$("img.5").click(function() {
			$("img.first").fadeOut(1);
			$("img.second").fadeOut(1);
			$("img.third").fadeOut(1);
			$("img.fourth").fadeOut(1);
			$("img.fifth").fadeIn(600);
			$("img.sixth").fadeOut(1);
			$("img.seventh").fadeOut(1);
		});
		
		$("img.6").click(function() {
			$("img.first").fadeOut(1);
			$("img.second").fadeOut(1);
			$("img.third").fadeOut(1);
			$("img.fourth").fadeOut(1);
			$("img.fifth").fadeOut(1);
			$("img.sixth").fadeIn(600);
			$("img.seventh").fadeOut(1);
		});
		
		$("img.7").click(function() {
			$("img.first").fadeOut(1);
			$("img.second").fadeOut(1);
			$("img.third").fadeOut(1);
			$("img.fourth").fadeOut(1);
			$("img.fifth").fadeOut(1);
			$("img.sixth").fadeOut(1);
			$("img.seventh").fadeIn(600);
		});

});