
$(document).ready(function(){
	
	$('div.triggerbox').each(function(){
		$(this).data('awesomeWidth', $(this).find('span.title').css('width'));
	});
	$('div.triggerbox').mouseover(function(){
		$(this).find('span.title').stop().animate({width: '100%'}, 400);
		$(this).find('a').css('color', '#0098d9');
	}).mouseout(function(){
		$(this).find('span.title').stop().animate({width: $(this).data('awesomeWidth')}, 250);
		$(this).find('a').css('color', '');
	});
	
});

