jQuery(document).ready(function($){
	$=jQuery;		
	
	var portfolioSidebar = $('.page-item-11'),
		portfolioSidebarList = portfolioSidebar.find('>ul').hide();
	
	if($('body').hasClass('post-parent-11')) {portfolioSidebarList.show();}
	
	portfolioSidebarList.parent().find('>a').click(function(){
		portfolioSidebarList.slideToggle('fast');
		return false;
	}).wrapInner('<a href="#" />');

	$('.gallery-lightbox,.gallery-lightbox_staggered').find('a').attr('rel','colorbox').colorbox({maxWidth:'960px',maxHeight:'95%'});
});

