$(document).ready(function(){
$("li.linkcat:odd").addClass("end");
$(".gallery li:nth-child(3n)").addClass("end");
$(function () {
        if ($.browser.msie && $.browser.version < 7) return;
        $('.gallery li').append('<span />').each(function () {
                    var $span = $('> span', this);
                    $(this).hover(function () {
						$span.hide();
                    }, function () {
						$span.show();
                    });
				
        });
    });
});
 

