
// jQuery is required for that

$(function(){

	$('a.small').click(function(){
		$('.news-image-big').html($(this).next().html());
		return false;
	});

});

