// JavaScript Document
$(document).ready(function(){
	$("#col_1 dd:not(:first)").hide();
	$("#col_1 dt a").click(function(){
		$("#col_1 dd:visible").slideUp("slow");
		$(this).parent().next().slideDown("slow");
		return false;
	});
	$("#col_2 dd:not(:first)").hide();
	$("#col_2 dt a").click(function(){
		$("#col_2 dd:visible").slideUp("slow");
		$(this).parent().next().slideDown("slow");
		return false;
	});

	$("#col_3 dd:not(:first)").hide();
	$("#col_3 dt a").click(function(){
		$("#col_3 dd:visible").slideUp("slow");
		$(this).parent().next().slideDown("slow");
		return false;
	});

	$("#col_4 dd:not(:first)").hide();
	$("#col_4 dt a").click(function(){
		$("#col_4 dd:visible").slideUp("slow");
		$(this).parent().next().slideDown("slow");
		return false;
	});


	$("#social").hide();
	$("#social_button").click(function(){
	$("#social").toggle();
});

$('#rotate').cycle({
fx: 'scrollDown',
timeout: 6000,
delay: -2000
});

$('#bottom_banner').cycle({
fx: 'scrollDown',
timeout: 6000,
delay: -2000
});
});