/* Author:

*/

$(document).ready(function() {

$('div.expanddiv').click(function() {

$(this).next().toggle();
if ($(this).next().css('display') == 'none') {
	$(this).html('+');
}
else {
	$(this).html('-');
}
});
}); 
