$(document).ready(function() {
		$('a[name=modal]').click(function(e) {
		//Cancel the link behavior
		e.preventDefault();
		
		//Get the A tag
		var id = $(this).attr('href');
		
		$("div.account_imagesshow").each(function(i){
		   if('#' + this.id != id){
			 $('div#'+this.id).hide();
		   }
		 }); 
		
		$(id).show(); 
	
	});
				   

});
