$(function(){
	$('a.external, a.social-item').click(function(){
		var href = $(this).attr('href');
		window.open(href);
		return false;
	});

	$('#instructions h2').click(function(){
		$(this).toggleClass('hide');
		$(this).next().toggle();
	});
});
