jQuery(document).ready(function(){
								
	// Accordion Scripting
	$("<p><strong>Please select a header from below for more information.</strong></p>").insertBefore("#contentRight h2.accordion-switch:first");
	
//	$("#contentRight").accordion({
//		active: false, 
//		autoHeight: false, 
//		header: 'h2.accordion-switch',
//		alwaysOpen: false
//	});
	
	$("#contentRight h2.accordion-switch").addClass("switchOff");
	
	$("#contentRight h2.accordion-switch").click(function() {
		if($(this).is(".switchOff")) {
			$(this).next().slideDown("slow", function() { 
				$(this).prev().removeClass("switchOff").addClass("switchOn");
			});
		} 
		if ($(this).is(".switchOn")) {
			$(this).next().slideUp("slow", function() { 
				$(this).prev().removeClass("switchOn").addClass("switchOff");
			});
		}
	}).next().hide();	
	
	
	// Lightbox
	$('a.lightbox').lightBox({
		fixedNavigation:	false
	}); // Select all links with lightbox class

	
});
