$(document).ready(function()
{
	$(".menuTable").find("td").css("width", "15%");
	$(".menuTable").find("td:first").css("width", "70%");	
	$(".menuTable").find("tr:odd").find("td").css("background", "#FFEAE2");
	
	$(".menuTable").hide();
	
	$(".menu_h2 h2").mouseover(function() { $(this).css("color", "#4a2c22"); });
	$(".menu_h2 h2").mouseout(function() { $(this).css("color", "#D75A25"); });
	
	$(".menu_h2 h2").click(function()
	{
		table = $(this).next(".menuTable").css("display");
		if (table=='none')
		{
			$(this).css("text-decoration", "underline");
			$(this).next(".menuTable").show();
		}
		else
		{
			$(this).css("text-decoration", "none");
			$(this).next(".menuTable").hide();
		}
	});
});

$(document).ready(function() {
    $('.intro').cycle({
		fx: 'fade'
	});
});
