
$().ready(function() {

//	action
	var atRestW = $('#actions .action').width();
	$('#actions .action').mouseenter(function(){
		$(this).stop();
		$(this).find(".content").css({ 'width' : 250, 'textAlign' : 'left' });
		$(this).animate({ width: '262px'}, 500, function(){
			$(this).find(".content #info").fadeIn(300);
		});
		$(this).find("img").animate({ right : 3 }, 500, 'linear');
	}).mouseleave(function(){
		$(this).stop();
		$(this).find(".content").css({ 'width' : 145, 'textAlign' : 'center' });
		$(this).find(".content #info").hide();
		$(this).animate({ width: atRestW }, 500, 'swing');
		$(this).find("img").animate({ right : 40 }, 500, 'linear');
	});
	
	$("#bottomshadow").css({ 'top' : $("#homepage").height() });
	
});
