$(function() {


	$('#content').css('height', $('#boxes').height()+30);
	$('#flash').css('marginTop', $('body').height()-704);
	
	$('#menu li').mouseenter(function() {
		$(this).addClass('active')
		$('ul', this).stop(true, true).delay(100).slideDown(300, "easeInCirc");
	});
	
	$('#menu > li').mouseleave(function() {
		$('#menu li').removeClass('active');
		$('ul', this).delay(100).stop(true, true).delay(500).slideUp(500, "easeOutCirc");
	});

	$('#gallery').paginate({'size': 3, children: '.gallery_thumb', use_pagination: false, pagination_before: true});



	$('#flash').flash({
		swf: '/media/flash.swf',
		width: 481,
		height: 594,
		wmode: 'opaque'
	})

	$('.radio').click(function() {
		index = $(this).index();
		$('.radio').removeClass('active');
		$(this).addClass('active');
		$('.tab').hide();
		$('.tab').eq(index).show();
	});
	
	index = 0;
	home_cycler = function()
	{
		$('.radio').eq(index).trigger('click');
		index++
		if(index==4) index=0;
	}
	setInterval(home_cycler, 14000);
	home_cycler();

	$('#flash').show();


	$('#cycle').cycle({speed:  2500});
});
