$(document).ready( function()
{
	$("#toggle_stories").toggle(
		function()
		{
			$("#stories").animate(
				{
					"marginTop": "-=154px",
					"height": "200px"
				},
				"slow" );
			$("#stories").addClass( "expanded" );
		},
		function()
		{
			$("#stories").animate(
				{
					"marginTop": "+=154px",
					"height": "46px"
				},
				"slow" );
			$("#stories").removeClass( "expanded" );
		}
	);
	
	$('#fma').innerfade(
	{   
		speed: 3000,   
		timeout: 15000,
		type: 'sequence'
	} );  
} );