// JavaScript Document$(document).ready(function(){				$("#slider").easySlider({				auto: true, 				continuous: true,				numeric: true,				pause: 7000,				speed: 1000			});			$("#slider2").easySlider({				auto: true, 				continuous: true,				pause: 7000,				speed: 1000			});			$('.expand').click(function(){				if ($("#openCloseIdentifier").is(":hidden")) {					$('a.expand').addClass('close');											$('div#aboutExpander').animate({						height: '150px',						opacity: '1'						}, 1000 );					$("#openCloseIdentifier").show();				} else {					$('a.expand').removeClass('close');											$('div#aboutExpander').animate({						height: '0px',						opacity: '0.0'						}, 1000 );					$("#openCloseIdentifier").hide();					}			});	});	
