$(document).ready(function(){
	$('#fotos_noticia')
	.anythingSlider({
		width          : 300,
		height		   : 200,
		startStopped   : false,
		toggleControls : false,
		theme          : 'default'
	})
	// add a close button (x) to the caption
	.find('div[class*=caption]')
		.css({ position: 'absolute' })
		.prepend('<span class="close">x</span>')
		.find('.close').click(function(){
			var cap = $(this).parent(),
				ani = { bottom : -50 }; // bottom
			cap.animate(ani, 50, function(){ cap.hide(); } );
		});
});
