$(function() {
	$('#rotation').cycle({
		timeout: 5000,
		speed: 1000
	})
	// ----------------------
	// Navigation dropdown
	// ----------------------

	$('#nav li ul.sub_about li a:first').css({ 'border-top' : 'none' });
	$('#nav li ul.sub_about li a:last').css({ 'border-bottom' : 'none' });
	$('#nav li ul.sub_res li a:first').css({ 'border-top' : 'none' });
	$('#nav li ul.sub_res li a:last').css({ 'border-bottom' : 'none' });

		// $('#nav li').hover(function() {
		// 		if ( $(this).children('ul').is(':children')) {
		// 			$(this).children('a').css({
		// 				'box-shadow' : '0px -6px 9px #111',
		// 				'-moz-box-shadow' : '0px -6px 9px #111',
		// 				'-webkit-box-shadow' : '0px -6px 9px #111',
		// 				'background' : 'rgba(229,229,229,0.94)',
		// 				'color' : '#5f789f',
		// 				'position' : 'relative',
		// 				'z-index' : '2000'
		// 			});
		// 		}
		// 	$(this).children('ul').slideDown('fast');
		// 	$(this).children('ul').children().children('a:first').css({ 'border-top' : 'none' });
		// 	$(this).children('ul').children().children('a:last').css({ 'border-bottom' : 'none' });
		// }, function() {
		// 	$(this).children('ul').slideUp('fast');
		// 		if ( $(this).children('ul').is(':children')) {
		// 			$(this).children('a').css({
		// 				'box-shadow' : '0px 0px 0x #111',
		// 				'-moz-box-shadow' : '0px 0px 0px #111',
		// 				'-webkit-box-shadow' : '0px 0px 0px #111',
		// 				'background' : 'rgba(229,229,229,0)',
		// 				'color' : '#ccc'
		// 			});
		// 		}
		// });


	// ----------------------
	// Alternate table rows
	// ----------------------

	$("table#links tr:nth-child(odd)").addClass("odd");
	$("table.alt tr:nth-child(odd)").addClass("odd");

	// ----------------------
	// Schedule a Mediation
	// ----------------------

	// $('#schedule_form').css({ 'display' : 'none' });
	// $('.schedule a.reserve').click(function(){
	// 	$('#schedule_form').slideDown('slow');
	// 	return false;
	// });

	$('.attorney_2').css({ 'display' : 'none' })
	$('.attorney_3').css({ 'display' : 'none' })
	$('.attorney_4').css({ 'display' : 'none' })
	$('.attorney_5').css({ 'display' : 'none' })

	$('a#attorney_2').click(function(){ $('.attorney_2').slideDown(); return false; });
	$('a#attorney_3').click(function(){ $('.attorney_3').slideDown(); return false; });
	$('a#attorney_4').click(function(){ $('.attorney_4').slideDown(); return false; });
	$('a#attorney_5').click(function(){ $('.attorney_5').slideDown(); return false; });

	$("table#avail_med td:empty").text("All Day");


});


