(function($){	
	Cufon.replace('div#navigation ul li a, p.homeLink a, div.homeBox h2 a', {hover: true, fontFamily: "Gotham"});
	Cufon.replace('div.contactBox h3', {fontFamily: "Gotham"});
})(jQuery);

$(document).ready(function(){
	$("a[rel='gallery']").colorbox({slideshow:true, height:"95%"});
	
	var replaceFirstLetter = function(){
		var t = $(this).text();
		var f = t.substring(0,1);
		var l = t.length;
		if($.browser.opera)
			t = "<div class='operap'>" + t + "</div>";
		else t = "<div class='firstp'>" + t + "</div>";
		$(this).hide().replaceWith( t ).show();
	}
	
	$("div.longBoxContent > p:eq(0)").each(replaceFirstLetter);
	$("div.contentEd").find('p:eq(0)').each(replaceFirstLetter);
});
