$(document).ready(function(){

	// TOGGLE SCRIPT
	$(".mainblock").hide();

	$("a.toggle").click(function(event){
	$(this).parents(".block").find(".mainblock").toggle("normal");

	// Stop the link click from doing its normal thing
	return false;
	}); // END TOGGLE

});
