$(document).ready(function(){
	$('#links_h').click(function() {
		toggleVis('links_inner');
	});
	
	$('#twin_cities_h').click(function() {
		toggleVis('twin_cities_inner');
	});
	
	$(".lightbox, [rel=lightbox]").lightBox();
	
	$(".donothing").click(function(event){
		event.preventDefault();
	});
});

function toggleVis(e) {
	$("#" + e).slideToggle();
}

function printPage() {
	window.print();
}

function sendForm(e) {
	var o = $("#" + e);
	
	if (o) {
		o.submit();
	}
}
