$(function(){
	$('#rightColumn a').click(function(){
		var thisLink = $(this).attr('href');
		$('#floatingImage').append('<img src="'+thisLink+'" alt="image" width="350px" height="235px"/>');
		//$('<img id="floatingImage" src="'+thisLink'" alt="image" />');
		return false;
	});
	
	$('#floatingImage').click(function(){
		$('#floatingImage img').remove();
	});
	
	$('#longColumn a').click(function(){
		//$('#rightColumn').append("<p>I'm working allright!</p>");
		//$('#rightColumn').append('<img id="floatingImage" src="images/001.jpg" />');
		var thisLink = $(this).attr('href');
		$('#floatingImageCenter').append('<img src="'+thisLink+'" alt="image" width="350px" height="235px"/>');
		//$('<img id="floatingImage" src="'+thisLink'" alt="image" />');
		return false;
	});
	
	$('#floatingImageCenter').click(function(){
		$('#floatingImageCenter img').remove();
	});

});
