// JavaScript Document
jQuery(document).ready(function(){

		$('#x11').show();
		$('#x12,#x13,#x14,#x15').hide();
		$('#x2,#x12').mouseover(function() {  
		$('#x11,#x13,#x14,#x15').hide();
		$('#x12').show();
        });
		$('#x2,#x12').mouseout(function() {  
        $('#x11').show();
		$('#x12').hide();
        });
		$('#x3,#x13').mouseover(function() {  
		$('#x11,#x12,#x14,#x15').hide();
		$('#x13').show();
        });
		$('#x3,#x13').mouseout(function() {  
        $('#x11').show();
		$('#x13').hide();
        });
		$('#x4,#x14').mouseover(function() {  
		$('#x11,#x13,#x12,#x15').hide();
		$('#x14').show();
        });
		$('#x4,#x14').mouseout(function() {  
        $('#x11').show();
		$('#x14').hide();
        });
		$('#x5,#x15').mouseover(function() {  
		$('#x11,#x13,#x14,#x12').hide();
		$('#x15').show();
        });
		$('#x5,#x15').mouseout(function() {  
        $('#x11').show();
		$('#x15').hide();
        });
});
