$(document).ready(function() {
    // put all your jQuery goodness in here.

		if(window.initialize) {
		// function exists, so we can now call it
		initialize();
		}
		

		$('#directionsform').submit(function() 
		{
			setDirections(this.from.value, this.locale.value);
			$('.directions').show();
			return false;
		});

		$(window).unload(function() { Gunload() });



		$("a[rel='gallery']").colorbox({transition:"fade", width:"75%", height:"75%"});

});
