var $j = jQuery.noConflict();
$j(document).ready(function() {

	$j('#entries div.post a').hover(function() {
		$j(this).children('h2').css({ backgroundColor: '#ECF6F5', color: '#3F5F5A' });
		$j(this).children('p').stop().animate({ paddingLeft: '50px' }, 150);
	}, function() {
		$j(this).children('h2').css({ backgroundColor: 'transparent', color: '#000' });
		$j(this).children('p').stop().animate({ paddingLeft: '0' }, 150);
	});

	$j('#works div.post a').hover(function() {
		$j(this).find('img').css({ opacity: 0.8 });
		$j(this).find('h2').css({ backgroundColor: '#ECF6F5', color: '#3F5F5A' });
		$j(this).find('h2').stop().animate({ marginTop: '22px', marginBottom: '25px' }, 150);
	}, function() {
		$j(this).find('img').css({ opacity: 1.0 });
		$j(this).find('h2').css({ backgroundColor: 'transparent', color: '#780000' });
		$j(this).find('h2').stop().animate({ marginTop: '47px', marginBottom: '0' }, 150);
	});

});
