
$(document).ready(function() {

	var togglespeed = document.getElementById('loginbox_togglespeed').value;
	$('.loginbox').each(function() {
		$(this).children('.loginbox_head').wrap('<a class="togglelink" href="#a">','</a>');
		$(this).children('.loginbox_body').hide();
		$(this).children('.togglelink').click(function(){
			$(this).siblings('.loginbox_body').toggle(togglespeed);
		})
	})
	
});
