$(document).ready(function(){	
	var slider = $("#slider").easySlider({
		auto: true,
		continuous: true,
		pause: 8000,
		controlsShow: false
	});
	$("#slider").mouseover(function() {
		$(this).pauseSlider();
	});
	$("#slider").mouseout(function() {
		$(this).resumeSlider();
	});
	$("#slider").css('visibility', 'visible');
	
	$('.hintable').hinty();
	
});