$(document).ready(function(){

	$('#portfolio li ').hover(function() {
		$(this).children('div').fadeIn(250);
	}, function() {
		$(this).children('div').fadeOut(500);
	});

	$('a.external').click(function() {
		window.open(this.href);
		return false;
	});


});


