//greybox
	var GB_ANIMATION = true;
	  var h = $(window).height() * .9;
	  var w = $(window).width() * .9;
	
$(document).ready(function(){

//tabs
$('#tabs').tabs();
$(function(){
	$('#tabs').tabs();

//datepicker
	$('#datepicker').datepicker({
	minDate: (new Date(1805,8,1)),
	maxDate: (new Date(1806,8,26)),
	defaultDate: dDate,
	gotoCurrent: true
	});	

	$('a.ui-state-default').attr('href','http://www.lewisandclarktoday.net');
	$('span').click(function () {
	});
});

//graybox
       $("a.greybox").click(function(){
         var t = this.title || this.innerHTML || this.href;
         GB_show(t,this.href,h,w);
         return false;
        });
});


