jQuery(document).ready(function(){
	jQuery('#pThumb img, #nThumb img').mouseover(function () {
			jQuery(this).stop(true, true).animate({
			  opacity: 1
			}, 250);
		}).mouseout(function () {
			jQuery(this).animate({
			  opacity: 0.3
			}, 250);
	});	
	
	jQuery('#pThumb a img').attr('title', jQuery('#pThumb a').attr('title'));
	jQuery('#nThumb a img').attr('title', jQuery('#nThumb a').attr('title'));
	
});
