jQuery.noConflict();
jQuery(document).ready(function($) {
	$(document).ready(function(){

		$('#socialIcons a').hover(function(){		
		if(!top[$(this).attr("title")]){
			top[$(this).attr("title")] = $(this).css('top');
		}	
				$(this).stop().animate({			
					'top': '0px'
				},200,'easeOutQuad')
			},function() {
				$(this).stop().animate({
					'top': top[$(this).attr("title")]
				},600,'easeOutBounce')
		});	
	});	
});	
