$(document).ready(function(){
	var images = ['images/footer/brands.jpg', 'images/footer/people.jpg'];
	var showtime = 3000;
	var transitiontime = 2000;
	$('#footer').bgImageTween(images, showtime, transitiontime );
	$("#menu").find("a").filter(function() { return this.href == location.href; }).addClass('current');
	$(".expanding-list dd").hide();
	$(".expanding-list dt").click(function(){
		$(this).next().slideToggle("slow");;
	});
});
