(function($) {
	$(function() {
		$("#slider").easySlider({
			auto: true, 
			continuous: true
		});
		$("#prevBtn").hide();
		$("#nextBtn").hide();
		$("#yayin").mouseover(function() {
			$("#prevBtn").show();
			$("#nextBtn").show();
		});
		
		$("#yayin").mouseout(function() {
			$("#prevBtn").hide();
			$("#nextBtn").hide();
		});
		
		$.featureList(
				$("#tabs li a"),
				$("#output li"), {
					start_item	:	1
				}
		);
	});
})(jQuery);	

