function init()
{
	// Add event listeners
	$(".stories_link_container").mouseenter(onMouseOverLink);
	$(".stories_link_container").mouseleave(onMouseOutLink);
}

function onMouseOutLink()
{
	$(this).stop().animate({backgroundColor:'#f0f0f0'}, 300);
	$(this).children('.stories_link_label').stop().animate({'marginLeft' : "0px"}, 100);
	$(this).children('.stories_link_arrow').stop().animate({'opacity' : '0'}, 100);
}

function onMouseOverLink()
{
	$(this).stop().animate({backgroundColor:'#ffffff'}, 0);
	$(this).children('.stories_link_label').stop().animate({'marginLeft' : '12px'}, 100);
	$(this).children('.stories_link_arrow').stop().animate({'opacity' : '1'}, 200);
}

$(document).ready(init);

