$(document).ready(function() {
	$('.image1').click(function() {
//		reorder('.image2', '.image3', '.image1');
	});
	
	$('.image2').click(function() {
//		reorder('.image1', '.image3', '.image2');
	});
	
	$('.image3').click(function() {
//		reorder('.image1', '.image2', '.image3');
	});
	
	function reorder(img1, img2, img3) {
		$(img1).css('z-index', 1);
		$(img1).css('margin-left', '235px');
		$(img1).css('margin-top', '0px');
		
		$(img2).css('z-index', 2);
		$(img2).css('margin-left', '285px');
		$(img2).css('margin-top', '50px');
		
		$(img3).css('z-index', 3);
		$(img3).css('margin-left', '335px');
		$(img3).css('margin-top', '100px');
	}
});
