$(document).ready(function(){
  swap_letter();
  
  $(".fancybox").fancybox({titlePosition:'inside'});
});

function swap_letter() {
  $('p.intro').each(function(index) {
	var paragraph = this;
	var node = 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);
	  $('<img />')
		  .attr('src', 'gfx/'+first_letter.toLowerCase() + '.gif')
		  .attr('alt',first_letter)
		  .addClass('dropcap')
		  .prependTo( paragraph );
	  first_letter = "";
	}
  });
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	var w = screen.availWidth;
	var h = screen.availHeight;
	window.open(theURL,winName,"width="+w+",height="+h+",left=0,top=0,location=no,status=yes,menubar=no,scrollbars=no,resizable=yes");
  //window.open(theURL,winName,features);
}
