jQuery.noConflict();

jQuery(document).ready(function(){
	
	function droptheCap() {
		var first_paragraph = jQuery('.post .storycontent p, .post .entry p')[0];
		  if (!first_paragraph) return false;
		  var node = first_paragraph;
		  while (node.childNodes.length) {
		    node = node.firstChild;
		  }

		  var text = node.nodeValue;
		  var first_letter = text.substr(0,1);
		  var match = /[a-zA-Z]/.test(first_letter);
		  if ( match ) {
			node.nodeValue = text.slice(1);
		    jQuery('<span class="dropcap">'+first_letter+'</span>')
		        .prependTo( first_paragraph );
		  }
	}
	
	jQuery('#blurb_rotator').innerfade({
		animationtype: 'fade',
		speed: 3000,
		timeout: 7000,
		type: 'random',
		containerheight: '115px'
	});
	
	// droptheCap();
	
});
