jQuery.noConflict();
jQuery(document).ready(function(){
    jQuery(".acta_links_col li").hover(function(){
       jQuery(this).children("span").fadeIn();
    },
    function() {
		jQuery(this).children("span").fadeOut("fast");
		}
	); 
	
	jQuery('#acta_scroll').click(function() {
	var elementClicked = "#acta_ads_tp";
	var destination = jQuery(elementClicked).offset().top;
	jQuery("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
	return false;
	});
	
	
});

