$(function(){
	$('.colorbox').colorbox({
		opacity: 0.75,
		transition: "none",
		title: function(){
			return $(this).find('img').attr('alt');
		}
	});
	$('.more_news').click(function(){
		$(this).parent().addClass('showing_news');
		return false;
	})
	$('.less_news').click(function(){
		$(this).parent().removeClass('showing_news');
		return false;
	})
})