$(document).ready(function() {
	
	$('#header ul#nav li:last-child').css('background','none').css('paddingRight','0');
	$('#extras ul li:last-child').css('background','none').css('paddingRight','0');
	
	$("a[rel='hbe']").colorbox();
	
	$('ul#nav, p#blogLink').show();
	
	// new for slideshows
	
	var $dcgallery = $('a[rel=hbedc]').colorbox();
	$('#showdc').click(function(e) {
	  e.preventDefault();
	  $dcgallery.eq(0).click();
	});
	
	var $nycgallery = $('a[rel=hbenyc]').colorbox();
	$('#shownyc').click(function(e) {
	  e.preventDefault();
	  $nycgallery.eq(0).click();
	});

	// end new for slideshows
	
});

