$(document).ready(function() {
	$('div#affiliates ul.locations').hide(); 
	$('div#affiliates li.state a.selected').click(function() {
		$(this).parent().siblings('.state').children('ul.locations').slideUp();
		$(this).next('ul.locations').slideToggle();
		return false;
	});
});
