// JavaScript Document
$(document).ready(function() {
	$(".button").scale9Grid({top:10,bottom:10,left:10,right:10});
    lastBlock = $("#a1");
    maxHeight = 212;
    minHeight = 97;	

    $("#tabs li a").hover(
      function(){
        $(lastBlock).animate({height: minHeight+"px"}, { queue:false, duration:400 });
	$(this).animate({height: maxHeight+"px"}, { queue:false, duration:400});
	lastBlock = this;
      }
    );
	
	$('#showchoir').cycle({ 
		fx:     'scrollLeft',
		pause:	true,
		delay:  -4000 
	});
	
	$('#slideshow').cycle({ 
		fx:     'growY, growX',
		speed:	1500,
		timeout:	5000,
		delay:  -3000 
	});
});
