$(document).ready(function() {
	
	$("#ncarousel").css({ "display": "block"});
	
	w = $(window).width() - 550;
	$("#jcarousel-clip").width(w);
	$("#ncarousel").jcarousel({
    	wrap: 'circular',
		auto: 3
    });
	
	$(window).resize(function() {
          w = $(window).width() - 550;
	  $("#jcarousel-clip").width(w);
	  $("#ncarousel").jcarousel({
    	     wrap: 'circular',
			 auto: 3
          });
        });
	
	
	$(".jcarousel-list li a").mouseover(function() {
        
		pos = $(this).offset(); // смещение относительно док-та
		//alert(pos.top);
                          
        currentid = $(this).attr("id"); // текущий айдишник
		w = ($("#"+currentid +"tip").width() - $("#"+currentid).width())/2 + 5;
		//$("#"+currentid +"tip").css({ "left": (pos.left - w) + "px", "top": (pos.top + 78) + "px" });
		$("#"+currentid +"tip").css({ "left": (pos.left - w) + "px", "margin-top": "-12px" });
		$("#"+currentid +"tip").fadeIn("fast");
		
		
    });
	  
	$(".jcarousel-list li a").mouseout(function() {
        currentid = $(this).attr("id"); // текущий айдишник
		$("#"+currentid +"tip").fadeOut("fast");
    });

});
