jQuery(document).ready(function() {
		$('.lightbox').click(function(){
							$('.imagen').html($(this).html());
							$('.imagen > img').attr({
											width: 467,
											height: 401
										});
			return false;
		});
		$('#slideshow').cycle('fade');	
		$('.noticia_desarrollo').hide();
		$('.desp_noticia').click(function(){
// 			$('.noticia_desarrollo').hide();
			$(this).parent().parent().children('.noticia_desarrollo').toggle();
			return false;
		});
});

