$(document).ready (function () {
	
	// jquery toggle set to false for when page loads
	$(".target_div").toggle(false);
	
	// jquery toggle on click
	$(".target").click(function() {
		$(".target_div").toggle();
	});
		
	// jquery ui tabs
	$("#tabs").tabs();
	
	// jquery ui button
	$("button").button ();
	

});
