// initialize the jquery code
 $(document).ready(function(){
	//close all the content divs on page load
	$('.login_form').hide();
	
	// toggle slide
	$('#slideToggle').click(function(){
	// by calling sibling, we can use same div for all demos
	$(this).siblings('.login_form').slideToggle();
	});

	// regular toggle with speed of 'slow'
	$('#toggleSlow').click(function(){
	$(this).siblings('.login_form').toggle('slow');
	});

	// fade in and out
	$('#fadeInOut').toggle(function() {
	$(this).siblings('.login_form').fadeIn('slow');
	}, function() {
	$(this).siblings('.login_form').fadeOut('slow');
	});        
});