$(document).ready(function(){
	$('div#links > a').click(function(clickEvent){
		var newImg = $('<img class="poster" src="img/'+$(this).attr('id') +'.jpg" alt="'+$(this).attr('id')+'" />').css({opacity: 0});
		clickEvent.preventDefault();
		
		$('div#banner').children().animate({top:'600px', opacity:0}, 400, function(){
			$(this).remove();
			newImg.appendTo('div#banner').animate({opacity: 1}, 1000, 'easeOutBounce').animate({top:'120px'}, 700, 'easeOutBounce');
		});	
	});
});
