// Written by Dinh Pham. Thanks to jQuery.
$(document).ready(function () {
	$('#main .right img').click(function(){
		$(this).parent('p').find('img').animate( { opacity: 0.3, top: '+0px' }, 'fast' ).css('z-index','11');
		$(this).animate( { opacity: 1, top: '-10px' }, 'fast').css('z-index','15');
	});
});