$(document).ready(function() {


	$("#whereAmI").mouseenter(
		function () {
			$("#whereAmI h2").html("How are you?");
		});
	$("#whereAmI").mouseleave(
		function () {
			$("#whereAmI h2").html("Hello, we&rsquo;re FINE.");
		}
	);
	
	$("div.home_scrollable").scrollable({
		circular: true,
		mousewheel: true
	});
	
});
