﻿$(document).ready(function() {
        $('.jQhelper a .jQhover').fadeTo(50, 0);
        $('.jQhelper a').hover(function() {
            $(this).find('.jQhover').stop(true, true).fadeTo(350, 1);
        }, function() {
            $(this).find('.jQhover').stop(true, true).fadeTo(350, 0);
        });

	$('.newsspacer:last').remove();
});
