// JavaScript Document

$(document).ready(function() {
	$('.expandtable1').hide();
	$('.expand1').click(function(){
	$('.expandtable1').toggle();
	
	if ($('.expandtable1').is(':visible')){
		$(this).html(' ...less &and;');
	} else {
		$(this).html(' ...more &or;');
	}
});
});

$(document).ready(function() {
	$('.expandtable2').hide();
	$('.expand2').click(function(){
	$('.expandtable2').toggle();
	
	if ($('.expandtable2').is(':visible')){
		$(this).html(' ...less &and;');
	} else {
		$(this).html(' ...more &or;');
	}
});
});

$(document).ready(function() {
	$('.expandtable3').hide();
	$('.expand3').click(function(){
	$('.expandtable3').toggle();
	
	if ($('.expandtable3').is(':visible')){
		$(this).html(' ...less &and;');
	} else {
		$(this).html(' ...more &or;');
	}
});
});

$(document).ready(function() {
	$('.expandtable4').hide();
	$('.expand4').click(function(){
	$('.expandtable4').toggle();
	
	if ($('.expandtable4').is(':visible')){
		$(this).html(' ...less &and;');
	} else {
		$(this).html(' ...more &or;');
	}
});
});

$(document).ready(function() {
	$('.expandtable5').hide();
	$('.expand5').click(function(){
	$('.expandtable5').toggle();
	
	if ($('.expandtable5').is(':visible')){
		$(this).html(' ...less &and;');
	} else {
		$(this).html(' ...more &or;');
	}
});
});

$(document).ready(function() {
	$('.expandtable6').hide();
	$('.expand6').click(function(){
	$('.expandtable6').toggle();
	
	if ($('.expandtable6').is(':visible')){
		$(this).html(' ...less &and;');
	} else {
		$(this).html(' ...more &or;');
	}
});
});
