$(document).ready(function() {

		$(".hide").hide();

		//----- show and hide business
		// add markup to container and applier click handlers to anchors
		$(".toggle").append("&darr;");
		$(".toggle").click(function(e){
			// send request
			toggleDiv=$(this).attr('id') + 'Content';
			$("#"+toggleDiv).toggle('normal');
			});
		});

