$(function(){
	$('#top_menu > ul > li').hover(
		function(){ $(this).addClass('show'); },
		function(){ $(this).removeClass('show'); }
	);
	
	$('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");
	});
	
});