

/*
-----------------   Fire Functions as soon as DOM is ready -----------------------------------*/	

$(document).ready(function () {

	sifr();
	showHide();
	$('#gallery .lb-image').lightBox();
	


});
	
	function sifr() {
		if(typeof sIFR == "function"){
			sIFR.replaceElement(named ({sSelector:"#pagetitle", sFlashSrc: "/assets/flash/sIFR-2.0.7/pmn.caecilia.swf", sColor: "#00a9b2", sBgColor:"#000000", sWmode: "transparent"}));
		};
	}
	
	function showHide() {
		$("a.more-trigger").click( function(e) {
			e.preventDefault();
			$(this).parent().parent().next('.more-area').toggle('normal');
		});
	}
	
