﻿$(document).ready(function() {
	$('.ban-block .ban-carousel').jcarousel({
		visible : 1,
		scroll : 1,
		buttonNextHTML : null,
		buttonPrevHTML : null,
		initCallback: mycarousel_initCallback,
		itemVisibleInCallback: {
		onBeforeAnimation: mycarousel_itemVisibleInCallbackBeforeAnimation
		},
		auto: 10,
		wrap: 'last',
		animation: 600
	});
	$('.mail-link').click( function() {
		top.location = 'mailto:'+$(this).text();
	});
	$('section').css('minHeight', $(window).height()-254);
	$('.fancy').fancybox({
		overlayOpacity: 0.6,
		overlayColor: '#000'
	});
});
function mycarousel_itemVisibleInCallbackBeforeAnimation(carousel, item, idx, state) {
	$('.banner-toggle span').removeClass('active');
	$('.banner-toggle span:eq('+(idx-1)+')').addClass('active');
};
function mycarousel_initCallback(carousel) {
	jQuery('.banner-toggle span').bind('click', function() {
		$('.banner-toggle span').removeClass('active');
		var i = jQuery(this).text();
		$(this).addClass('active');
		carousel.scroll(jQuery.jcarousel.intval((i)));
		return false;
	});
}
