$(document).ready(function() {
	$("#flashMessage").show("normal",
		function() {
			$("#flashMessage").fadeOut(10000); 
		}
		);
    
    $('.help_content').hide();   
    
    $('a.help').click(function() {    
        $('.help_content').toggle("slow");
        return false;
    });
    
    $('.delete').click(function(){
            var answer = confirm('Delete : '+jQuery(this).attr('title'));
            // jQuery(this).attr('title') gets anchor title attribute
            return answer; // answer is a boolean
    });
    
    $('.confirm').click(function(){
            var answer = confirm('Confirm : '+jQuery(this).attr('title'));
            // jQuery(this).attr('title') gets anchor title attribute
            return answer; // answer is a boolean
    });
                
});

function upload_photo() {
  $('#upload_form').html('<p><img src="/public/images/ajax-loader.gif" width="220" height="19" alt="" /></p>');
  $('#upload_form').load('/membership/upload_photo.html');
  $('#upload_link').hide();
}

function upload_photo_form() {
  $('#upload_wait').html('<p><img src="/public/images/ajax-loader.gif" width="220" height="19" alt="" /></p>');
  $('.button').hide(); 
}

