$(document).ready(function(){
	$("p.read_more a").toggle(function(){
		$(this).parent().parent().find(".news_container div.descr").show();
	}, function(){
		$(this).parent().parent().find(".news_container div.descr").hide();
	});
	
	$(".newsimg a:has(img)").length && 
		$(".newsimg a:has(img)").fancybox({
			'speedIn'		:	600, 
			'speedOut'		:	200,
			'easingIn'		:	'swing',
			'easingOut'		:	'swing',
			'opacity'		:	true,
			'overlayShow'	:	true,
			'overlayOpacity':	0.8,
			'padding'		:	0
		});
});
