// JavaScript Document<!--$(document).ready(function(){	$("#homeOff").mouseover(function(){		$("#homeOn").animate({ opacity: 'show' }, "slow");        $("#homeOff").animate({ opacity: 'hide' }, "slow");	});	$("#homeOn").mouseout(function(){		$("#homeOff").animate({ opacity: 'show' }, "slow");        $("#homeOn").animate({ opacity: 'hide' }, "slow");	});	$("#dancingtaoOff").mouseover(function(){		$("#dancingtaoOn").animate({ opacity: 'show' }, "slow");        $("#dancingtaoOff").animate({ opacity: 'hide' }, "slow");	});	$("#dancingtaoOn").mouseout(function(){		$("#dancingtaoOff").animate({ opacity: 'show' }, "slow");        $("#dancingtaoOn").animate({ opacity: 'hide' }, "slow");	});	$("#journeysOff").mouseover(function(){		$("#journeysOn").animate({ opacity: 'show' }, "slow");        $("#journeysOff").animate({ opacity: 'hide' }, "slow");	});	$("#journeysOn").mouseout(function(){		$("#journeysOff").animate({ opacity: 'show' }, "slow");        $("#journeysOn").animate({ opacity: 'hide' }, "slow");	});	$("#rhythmsOff").mouseover(function(){		$("#rhythmsOn").animate({ opacity: 'show' }, "slow");        $("#rhythmsOff").animate({ opacity: 'hide' }, "slow");	});	$("#rhythmsOn").mouseout(function(){		$("#rhythmsOff").animate({ opacity: 'show' }, "slow");        $("#rhythmsOn").animate({ opacity: 'hide' }, "slow");	});	$("#medicineOff").mouseover(function(){		$("#medicineOn").animate({ opacity: 'show' }, "slow");        $("#medicineOff").animate({ opacity: 'hide' }, "slow");	});	$("#medicineOn").mouseout(function(){		$("#medicineOff").animate({ opacity: 'show' }, "slow");        $("#medicineOn").animate({ opacity: 'hide' }, "slow");	});	$("#rootsOff").mouseover(function(){		$("#rootsOn").animate({ opacity: 'show' }, "slow");        $("#rootsOff").animate({ opacity: 'hide' }, "slow");	});	$("#rootsOn").mouseout(function(){		$("#rootsOff").animate({ opacity: 'show' }, "slow");        $("#rootsOn").animate({ opacity: 'hide' }, "slow");	});	$("#communityOff").mouseover(function(){		$("#communityOn").animate({ opacity: 'show' }, "slow");        $("#communityOff").animate({ opacity: 'hide' }, "slow");	});	$("#communityOn").mouseout(function(){		$("#communityOff").animate({ opacity: 'show' }, "slow");        $("#communityOn").animate({ opacity: 'hide' }, "slow");	});	$("#resourcesOff").mouseover(function(){		$("#resourcesOn").animate({ opacity: 'show' }, "slow");        $("#resourcesOff").animate({ opacity: 'hide' }, "slow");	});	$("#resourcesOn").mouseout(function(){		$("#resourcesOff").animate({ opacity: 'show' }, "slow");        $("#resourcesOn").animate({ opacity: 'hide' }, "slow");	});	$("#contactOff").mouseover(function(){		$("#contactOn").animate({ opacity: 'show' }, "slow");        $("#contactOff").animate({ opacity: 'hide' }, "slow");	});	$("#contactOn").mouseout(function(){		$("#contactOff").animate({ opacity: 'show' }, "slow");        $("#contactOn").animate({ opacity: 'hide' }, "slow");	});});//-->
