/**
 * @author edwardford
 */
$(document).ready(function() {
	

	
	
	$("#switch").click(function(){
		if($("body.white")){
			$("body").removeClass("white").addClass("black");
		}
	}
	);

	// this initialises the demo scollpanes on the page.
	$('#about-us .scroll-pane').jScrollPane({scrollbarWidth:20, scrollbarMargin:10});
	
});



function txtColor(color) { 
	//alert("The color is"+color)
	$("body").removeClass().addClass(color);
}