jQuery.fn.fadeToggle = function(speed, easing, callback) {
   return this.animate({opacity: 'toggle'}, speed, easing, callback);

}; 


jQuery(document).ready(function () {

jQuery.noConflict();

    jQuery('#ctn_logo, .small_colour, .text_fade img, #ctn_text, ul.voices li a, ul.partners li a, #ctn_header #ctn_star, #ctn_header #ctn_join, .bubble').pulse({		
        backgroundColors: ['#7200ff', '#9000ff', '#ae00ff', '#d200ff', '#f600ff', '#ff00a8', '#ff0060', '#00ff72', '#00ffba', '#00ffde', '#00f6ff', '#00d2ff', '#00a8ff', '#007eff', '#0054ff', '#0024ff', '#1800ff'],
        speed: 5000
    });

    
/////////////////////////// TOOL TIPS ANIMATE	
	
	jQuery('a').tooltip({ 
		track: true, 
		delay: 0, 
		showURL: false, 
		opacity: 0, 
		fixPNG: true,
		extraClass: "more",
		top: -20, 
		left: 20 
	});
	






jQuery(".small_content").hover(
      function () {
         jQuery(".rollover",this).fadeIn("fast");
      }, 
      function () {
         jQuery(".rollover",this).fadeOut("fast");
      }
	);

	
});

