$(document).ready(function() {
$('.fadeThis').append('<span class="hover"></span>').each(function () {
var $span = $('> span.hover', this).css('opacity', 0);
$(this).hover(function () {
$span.stop().fadeTo(500, 1);
}, function () {
$span.stop().fadeTo(500, 0);
});
});
});
$(document).ready(function() {
$('.preview-image').append('<span class="corners"></span>').hover(function () {
$("img", this).stop().animate({top:"-54px"},{queue:false,duration:200});
}, function() {
$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
});
});
$(document).ready(function(){
$.smoothAnchors("slow", "swing", false);
});