// JavaScript Document
$(document).ready(function() {
	
	$("#projects .project_image").hide();
	$("#projects .project_info").hide();
	

	index=-1;
	$('#map area').hover(function() {
		this_index=$('#map area').index($(this));
		if (this_index != index) {
			index=this_index;
			$("#projects .project_data").slice(0, 1).hide();
			$("#projects .project_image").fadeOut().slice(this_index, this_index+1).fadeIn();
			$("#projects .project_info").hide().slice(this_index, this_index+1).show();
		}
	});
				  
});
