/* Declare a namespace for the site */
var Site = window.Site || {};

/* Create a closure to maintain scope of the '$'
   and remain compatible with other frameworks.  */
(function($) {
	
	//same as $(document).ready();
	$(function() {
		
		

	});


	$(window).bind("load", function() {
		
		
	
	});

	
})(jQuery);

$(document).ready(function(){
	$(".overlaybio").colorbox({width:"75%", height:"75%", inline:true, href:"#inline_bio"});
	$("a[rel='images']").colorbox({transition:"elastic", width:"75%", height:"75%", rel:"images", current:"{current} of {total}"});
	$("a[rel='press']").colorbox({transition:"fade", width:"75%", height:"75%", current:"{current} of {total}"});
});

