

$(document).ready(function() {
	$('.toggle').each(function(){
		$(this).empty().prepend("Show Details...");
		var id = $(this).attr("rel");
		$('#'+id).css({display:"none"});
	});
	$('.show_block').each(function(){
		$(this).empty().prepend("");
		var id = $(this).attr("rel");
		$('#'+id).css({display:"block"});
	});

});


// disables and changes text of Submit Buttons
$(function() {
	$('#submit').click(function(){
		$(this).val("Please wait...");
	});
	$('#save').click(function(){
		$(this).val("Please wait...");
	});

	$('.toggle').click(function(){
		var id = $(this).attr("rel");
		var el = document.getElementById(id);
		 if($(el).css("display") == 'block'){
		   $(el).css({display: "none"});
		   $(this).empty().prepend("Show Details...");
		 } else {
		   $(el).css({display: "block"}); 
		   $(this).empty().prepend("Hide Details...");
		 }
		 window.status='';
		return false;
		
	}).mouseover(function(){
		 window.status='';					
	}).mousedown(function(){
		 return false;					
	});
	
});


