$(document).ready(function() {
	$('#stretch_menu .stretch_menu_ul').kwicks({
		max : 212,
		spacing : 1,
		isVertical : true
	});
	$('#text_slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 7000
	});
	$('#image_slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 14000
	});
	$(".expand_body").hide();
	$(".expand_up").hide();
	$(".expand_head").toggle(function(){
		$(".expand_down").hide();
		$(".expand_up").show();
		$(this).next(".expand_body").slideDown(200);
	}, function(){
		$(".expand_up").hide();
		$(".expand_down").show();
		$(this).next(".expand_body").slideUp(300);
	});
});
