// PR Blog Script

$(function() {
		   		$('.PR').hover(function(){
				  								   $('div.PRheadImage img', this).fadeOut('slow');
												   $('div.PRimageTitle', this).fadeIn('normal');
														},
				
											function(){
				  								   $('div.PRheadImage img', this).fadeIn('normal');
												   $('div.PRimageTitle', this).fadeOut('fast');
														}
														);

		   });