$(document).ready(function() {

    // Make all the text disappear on load
    $('div.item div p').hide();

    // The special effects
    $('div.item div').hover(function() {
        $(this).children('p').fadeIn().css('z-index', '400');
        $(this).children('a.thumb').animate({ left: '-10px'}, 300).children('img').animate({ width: '204px', height: '142px', marginTop: '0', marginLeft: '0', borderWidth: '1px'}, 300);
        
    }, function() {
        $(this).children('p').fadeOut().css('z-index', '0');
        $(this).children('a.thumb').animate({ left: '13px'}, 300).children('img').animate({ width: '146px', height: '101px', marginTop: '18px', marginLeft: '6px', borderWidth: '0'}, 300);
    });
    
});
    