$(document).ready(function() {
	$("#dyk2").hide();
	$("#tester li").each(
		function( intIndex ){
			$(this).css("background", "url(images/circle" + (intIndex + 1) + ".gif) 5px 5px no-repeat");
			$(this).not($("ul li:odd")).css("background-color", "#FFF3D3");
		}
	);
	$("#dykLink").click(function(){
		$("#dyk2").toggle("slow");
		$("#dyk1").toggle("slow");
		return false;
	});
	$('#dykLink').toggle(function() {
		$("#dykLink").html("View previous 5 gymnastic facts");
		}, function() {
		$("#dykLink").html("View next 5 gymnastic facts");
	});
});