$(function() {
	setTimeout(function() {
		$("#free-canvas a").animate({
			right:"0px"
		}, 1500);
	}, 1000);
	
	$("#free-canvas a").hover(
		function() {
			$(this).find("img").attr("src", "http://www.openprairienaturalangus.com/images/free-canvas-hover.gif");
		}, function() {
			$(this).find("img").attr("src", "http://www.openprairienaturalangus.com/images/free-canvas.gif");
	});
});

function showOurStory() {
	$('a#our-story').click();
}
