jQuery(document).ready(function($){

	// Ko z miško gremo v stolpec
	// štartamo "slide show"
	// ko gremo ven, se ustavi
	//--------------
	
	var rotator = "";
	
	$(".hotel").hover(
		function(){
			
			var hsID = $(this).find(".twgs").attr("id");
			
			//console.log(hsID + " start" );
			
			//var e = $(this);
			
			rotator = setInterval(function() {
				
				twgs_rotate_items("","#"+hsID,"", "next");
				//console.log( "animation started" );

		   		}, 1500);
			
		},
		function(){
			
			
			//console.log("and we are out!");
			
			// return to first slide
			
			var hsID = $(this).find(".twgs").attr("id");
			
			clearInterval(rotator);
			
			var curr = $("#"+hsID+" .twgs-list li.current");
			var next = $("#"+hsID+" .twgs-list li:first");
			
			if( ! curr.hasClass("first") )
			{
				curr.removeClass("current");
				next.addClass("current");

				// hide current and show next
				curr.fadeOut("slow");
				next.fadeIn("slow");
			}
			
		}
	);
	//--------------
	
});
