$(function() {
	
	$('.art').css('height', $(window).height() - 200); 

	$(window).resize(function() { $('.art').css('height', $(window).height() - 200); });

});

$(function() {

$('.portfolio_items .item a,.home .item a,.project a.image').append('<img src="lib/i/content/curl.png" alt="" width="2" class="curl" />');

$('.portfolio_items .item a,.home .item a,.project a.image').hover(function() {
	$('.curl', this).stop().animate({ 'width': 62 }, 500, 'easeOutQuad'); 
	},function() {
	$('.curl', this).stop().animate({ 'width': 2 }, 350, 'easeInQuad');
	});

});

