$(document).ready(function() {
	// Stuff to do as soon as the DOM is ready;
	
	$('.portfolio h2 a').bind('click', function () {
		$($(this).href()).show().siblings().hide();
	});
	
	$('.images').jcarousel();
	
});
