$(function(){
	
	$showSpeed = 100;
	$hideSpeed = 200;
	
	$('#PList1').hide();
	$('#PList2').hide();

	$('#PBnr').hover(
		function(){
			
			$('#PList1').slideDown($showSpeed);
			$('#PList2').slideDown($showSpeed);
			
		},
		function(){


			$('#PList1').slideUp($hideSpeed);
			$('#PList2').slideUp($hideSpeed);
			
			
		}
	
	);




});
