$(document).ready(function() {
	$('div.img-slider ul').cycle({ fx:'fade', pause: 2 });


	$(".button a").hover(function() {
	  $(this).next("em").animate({opacity: "show", top: "-30"}, "slow");
	}, function() {
	  $(this).next("em").animate({opacity: "hide", top: "-25"}, "fast");
	});
	
	$(".button a").hover(function() {
	  $(".green").animate({opacity: "show", top: "0"}, "slow");
	}, function() {
	  $(".green").animate({opacity: "hide", top: "-5"}, "fast");
	});


	$("#tabs").tabs({
        event: 'mouseover',
        fx: {
            opacity: 'toggle',
            duration: 'fast'
        }
    }).tabs('rotate', 8000, true);

});
