$().ready(function() {
	$("#slider").easySlider({
		auto: true, 
		continuous: true,
		//numeric:true,
		pause: 10000
	});
	$(".hover").hover(
	function () {
		$(this).addClass('ui-state-hover');
	},
	function () {
		$(this).removeClass('ui-state-hover');
	}
	);
	
	$(".lightbox").lightbox({overlayOpacity: 0});
});

