jQuery(document).ready(function() {
    
    jQuery('ul.creations li a img').mouseover(function() {
	jQuery(this).animate({
	    borderColor: '#72B53B'
	}, 'slow');
	jQuery(this).parent().parent().children('img').fadeIn('1400');
    });

    jQuery('ul.creations li a img').mouseout(function() {
	jQuery(this).animate({
	    borderColor: '#DDDDDD'
	}, 'slow');
	jQuery(this).parent().parent().children('img').fadeOut('200');
    });

});

