$(document).ready(function(){


 var w = $(".wdth").width();
 $('#center_sites').css({width:w+20});


$('.site').hover(
										
	function(e) {$(this).find('span').hoverFlow(e.type, { width:'100%'}, 'fast'); $(this).hoverFlow(e.type, { marginLeft:25}, 'fast') ;}, 
	function(e) {$(this).find('span').hoverFlow(e.type, { width:0 }, 'slow'); $(this).hoverFlow(e.type, { marginLeft:20}, 'fast') ;}
	
	
  );













});

