$(function(){

$('a.printp').click(function(e){
	e.preventDefault();
	var url = $(this).attr('href');
	window.open(url, 'pav',"location=1,status=1,scrollbars=1,width=670,height=450");
});

});

$(function(){

$('a.more_news_a').click(function(e){
	e.preventDefault();
	$('#more_news').show();
	$(this).hide();
});

});

