// JavaScript Document
$(document).ready(function() {
	
	$("#image_1 img").hide().slice(0, 1).show();
	$("#projectNo img").hide().slice(0, 1).show();
	$("#image_2 img").hide().slice(0, 1).show();
	$("#projectName img").hide().slice(0, 1).show();
	$("#image_3 img").hide().slice(0, 1).show();
	
	index=-1;
	$('#leftnav a').hover(function() {
		this_index=$('#leftnav a').index($(this));
		if (this_index != index) {
			index=this_index;
			$("#image_1 img").fadeOut().slice(this_index+1, this_index+2).fadeIn();
			$("#projectNo img").fadeOut().slice(this_index+1, this_index+2).fadeIn();
			$("#image_2 img").fadeOut().slice(this_index+1, this_index+2).fadeIn();
			$("#projectName img").fadeOut().slice(this_index+1, this_index+2).fadeIn();
			$("#image_3 img").fadeOut().slice(this_index+1, this_index+2).fadeIn();
		}
	});
				  
});
