
$(document).ready(function(){
	$('#current-projects > dd').hide();

	$('a[href^="http"]').attr('target', '_blank');
	
	$('#current-projects > dt').click(function(){
		if ($('+ dd', this).length > 0) {
			$('+ dd', this).slideToggle('fast');
			$(this).toggleClass('active');
		}
	});
});

