/*
 *	Animations du Social HUB
 *	
**/


jQuery(document).ready(function($){

		//# ==========
		//# Social hub
		//# ==========
		hub_offset_repos = $('#social_hub .liens a').first().css('right');
		$('#social_hub .liens a').hover(
			function(){
				$(this).animate({
					right: '0px'
				}, 250);
			},
			function(){
				$(this).animate({
					right: hub_offset_repos
				}, 200);
			}
		);
/*
		// Masquage accroche si fenêtre trop petite
		PIVOT_LITTLESCREEN = 1280;
		if( $(window).width() <= PIVOT_LITTLESCREEN ){
			$('#social_hub .accroche').hide();
		}
		$(window).resize(function(event){
			window_current_width	= $(window).width();
			// Fenêtre trop petite => on la masque
			if( window_current_width <= PIVOT_LITTLESCREEN ){
				$('#schub_accroche').fadeOut();
			}
			// Fenêtre suffisamment large => on l'affiche
			else{
				$('#schub_accroche').fadeIn();
			}
		});
*/	
});


