/*

$(document) .ready(function() {

	// When button is clicked bring up form
	$('#navigation a') .click(function() {
		var get_href = $(this) .attr('href');
		$('#modal') .load(get_href + ' #page-wrap');
		$('#modal') .addClass('active');
		return false;
	});
	
	// Clear window when clicked off
	$('.closeForm') .click(function() {
		$(this) .removeClass('active');
	});

});

*/