var tmp;
$(document).ready(function() {
	$("#numbers a").click(function(){
		tmp = $(this).html();
		
		$("#announcements .button").hide();
		$("#image_"+tmp).show();
		
		$("#numbers a").removeClass("selected");
		$("#numbers #link_"+tmp).addClass("selected");
		
		return false;
	});

});