$(document).ready(function(){
	//$('#lform').toggle();
	// bind the onclick action to show the login
	$('#loginHelper').click(function () {
		$('#lform').toggle(500);
		$(this).deselect();
		return false;
    });
    
    $(".extendArticle").click(function (){
		$(this).toggleClass("contractArticle");
    	$(this).parents('div.header').next().children(".filler").slideToggle(700);
		$(this).parents('div.header').next().children(".extended").slideToggle(700);
    });

});