$(function() {

	if($('#container_borough_act').attr('style') == "display: none;"){			
		// hide this element
		$("#container_borough_act").slideDown("fast");
		$("#activity-list p.bodytext").text("Hide list of London borough activities");			
		
	}else{
		$("#container_borough_act").slideUp("fast");
		$("#activity-list p.bodytext").text("Show list of London borough activities");			
	}

	// when click make diferent action
	$("#activity-list p.bodytext").click(function(){
		
		if($('#container_borough_act').attr('style') == "display: none;"){			
			// hide this element
			$("#container_borough_act").slideDown("fast");
			$("#activity-list p.bodytext").text("Hide list of London borough activities");			
			
		}else{
			$("#container_borough_act").slideUp("fast");
			$("#activity-list p.bodytext").text("Show list of London borough activities");			
		}
		
	});
	
	$("button#onlineSubmit").click(function(){
		var error= "";
		
		if ($("input[name='name']").val() == ""){
			error = "<li>name is required</li>";
		}
		
		if ($("input[name='email']").val() == ""){
			error = error+ "<li>email is required</li>";
		}
		
		if (error == "") return true;
		else {
			error = " <p>The following field(s) are required</p><ul>"+error+"</ul>";
			$(".errorMsg").html(error);
			$(".errorMsg").fadeIn('2000');
			return false;
		}
	});

});
