jQuery(document).ready(function($) {
	
	// make header graphic clickable
	$("header h1").click(function() {
		window.location.href = "/";
	}).css("cursor", "pointer");
	
	// colorbox popup
	$('a.colorbox').colorbox({transition:"fade"});
	
});
