//____________________________"join us" tab hover	

$(document).ready(function(){	
				   
	$('div.hover_tab').hover(function(){
	$(this).find('.stretching_container').animate({width:'470px'},{queue:false,duration:200});
	}, function(){
	$(this).find('.stretching_container').animate({width:'110px'},{queue:false,duration:200});
	});
 
  });   
 
//_____________________________________________________________________join us tab hover ends	
