$(document).ready(function() {

	$("ul.slides").zAccordion({ 
		timeout: 5500,
		width: 947,
		height: 276,
		slideWidth: 467,
		trigger: "mouseover",
		slideClass: "slide",
		auto: false,
		invert: true
	});
	
	function onAfter(curr, next, opts) {
    var index = opts.currSlide+1;
	var index2 = opts.lastSlide+1;
	if (index == index2) {index2 = 0;}
	var currh = $('#tab'+index).height()+10
	var lasth = $('#tab'+index2).height()+10
    $('#tab'+index).animate({
    top: '-='+currh
  }, 1000);
	$('#tab'+index2).animate({
    top: '+='+lasth
  }, 500);
	}
	
	$(window).load(
    function() {
	  $('.hp-banners').cycle({
      fx:     'fade',
	  containerResize: 1,
	  after:   onAfter
	  });
 });
  $('#featured-business').cycle({
      fx:     'fade',
	  containerResize: 1
  });
  
  $('.eventsfb').fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'overlayColor'	:	'#333333'

  });
  
  
  
});
