// JavaScript Document

$(function() {
	
	function hide() {
		$('#works_bar,#first,#second,#third,#forth,#fifth,#sixth,#seventh,#eighth,#ninth,#tenth,#eleventh,#twelvth,#thirteenth').hide();
	}
	$('#areas img').click(function() {
		var id = $(this).attr('id').replace('_area','');
		hide();
		$('#works_column3 img#' + id).show();
	});
	
});
