// Shows and Hides <div>s within the portfolio layout //
// Huge Props to Karl at learning$.com (http://www.learning$.com/2007/03/accordion-madness)
$(document).ready(function() {
	
	// Show & Hide Main Sections
	$('div.hide-show> div.section').hide();
	$('div.hide-show> div#contact').show();
	$('div.sectionHeading:not(#section04)').css({cursor:"pointer"}).click(function() {
		$(this).toggleClass('opened').next('div').slideToggle('slow')
	 });

	// Fancy Zoom
	$('.project_images ul a').fancyZoom({scaleImg: true, closeOnClick: true});
});

