$(document).ready(function() {
	$("#chained").scrollable({circular: true, mousewheel: false});
	$("#chained2").scrollable({circular: true, mousewheel: false });
	$(function() {
		$(".slidetabs").tabs(".images > div", {
			effect: 'fade',
			fadeOutSpeed: "slow"
		});
	});
	$("#chained4").scrollable({circular: true, mousewheel: false });
	$("#chained5").scrollable({circular: true, mousewheel: false });
	$("#chained6").scrollable({circular: true, mousewheel: false });
	$("#link").mouseover(function() {
        $("#ebis img").stop();
        $("#ebis img:first-child").animate({top:0, opacity: 0}, 250, function() {
            $(this).animate({top:15, opacity: 1}, 250);
            $("#ebis img + img").animate({top:35, opacity: 1}, 250);
        });
    });
    $("#link").mouseout(function() {
        $("#ebis img").stop();
        $("#ebis img + img").animate({top:45, opacity: 0}, 250);
        $("#ebis img:first-child").animate({top:0, opacity: 0}, 250, function() {
            $(this).animate({top:15, opacity: 1}, 250);
        });
    });
	
	$("#phone").mask("(99)9999-9999");
});
