$(document).ready(function(){
	var slide = $("#slider").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
		
	$(".item-slider").mouseover(function(){
		slide.tabs('rotate', null); 
	});
	
	$(".item-slider").mouseout(function(){
		slide.tabs("rotate", 5000, true);
	});
	
	/*$("#lst-slider li a").each(function(){
		$(this).html(parseInt($(this).html())+1);
	});*/
});
