﻿$(document).ready(function()
{
    $('#slider').s3Slider({
        timeOut: 4000 
    });

	$("#tabs").tabs();

	$("#InnerSites dl dd:not(:first)").hide();
	$("#InnerSites dl dt").corner("top");
	$("#InnerSites dl dd ul").corner("bottom");
	$("#SemiFooter").corner();
	$("#Footer").corner();
	$("#InnerSites dt a").click(function(){
		$("#InnerSites dd:visible").slideUp("slow");
		$(this).parent().next().slideDown("slow");
		return false;
	});
});

