$(function(){
	$('.portfolioItem').hover(function(){
		$(this).find('.portfolioDescr').slideToggle();
	},function(){
		$(this).find('.portfolioDescr').slideToggle();
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto({theme: 'dark_rounded', showTitle: false});
});

