$(function() {
	$('.col a').append('<span class="hover"></span>');		
    $('.col a').hover(function(){$('.hover', this).stop().animate({'opacity': 1}, 1000,'easeOutSine')},function(){$('.hover', this).stop().animate({'opacity': 0}, 500, 'easeOutQuad')})
});