var $j = jQuery.noConflict();

$j(function(){
	$j('body').addClass('javascript');

	//for reasons unknown, the :last selector isn't working,
	// so there's a bit of a work up to emulate this here	
	$j('blockquote').each(function() {
		pcount=$j('p', $j(this)).length;
		$j('p:eq('+(pcount-1)+')', $j(this)).addClass('last');
	});
});
