$(document).ready(function(){
	$('#buChecked a').click(function(){
		$('div#checkedList').toggle();
	});
	$('#buCheckedClose a').click(function(){
		$('div#checkedList').hide();
	});
	$('#searchMore').hide();
	$('#searchMoreLink').click(function(){
			$('div#searchMore').slideToggle('slow');
	});

	$('#mapFlash').empty().media({
		src: 'images/map.swf',
		width: 529,
		height: 245,
		wmode: 'transparent'
	});

	$('legend input').click(function() {
		var checked = $(this).attr('checked');
		$(this).parents('fieldset').find('ul input:checkbox').attr('checked', checked);
	});
	$('fieldset ul input').click(function() {
		var checked = $(this).attr('checked');
		if (!checked) {
			$(this).parents('fieldset').find('legend input:checkbox').attr('checked', false);
		}
	});
});
