$(document).ready(function(){
	$('#randomimage_click').toggle(function() {
		$('#randomimage_click').hide();
		$('.randomimage').fadeIn();
		// $(this).siblings('.change_email').fadeOut('slow');
	}, function() {
		$('#randomimage_click').show();
		$('.randomimage').fadeOut();
		// $(this).siblings('.change_email').fadeIn('slow');
	});
});

