
$(document).ready(function() {
$('#templates li a.thumb').hover(function() { $(this).find('img').stop().animate({ top: '17px', left: '19px' }, 300); }, function() { $(this).find('img').stop().animate({ top: '23px', left: '25px' }, 300); });

    // gridito init
    $("div.gridito").livequery(function () {
            $(this).gridito();
    });

    // nette ajax init
    $("a.ajax").live("click", function (event) {
            event.preventDefault();
            $.get(this.href);
    });
    
    $('#templates li:first a.thumb').prepend('<span class="new"></span>').parent().next().find('a.thumb').prepend('<span class="new"></span>');
    
    
});

