// jQuery_accordion

// copyright (c) 2007 RedLine Magazine
// Licensed under the MIT License:
// customize: Takashi Hirasawa (http://css-happylife.com/)

$(document).ready(function() {
	$("div#loginArea p").hover(function(){
		$(this).css("cursor","pointer");
	},function(){
		$(this).css("cursor","default");
		});
	$("div#loginForm").css("display","none");
	$("div#loginArea p").click(function(){
		$(this).next().slideToggle("fast");
		});
	
	/* footer */
	$("div#footerSwitch p").hover(function(){
		$(this).css("cursor","pointer");
	},function(){
		$(this).css("cursor","default");
		});
	$("div#footerSwitch p").click(function(){
		$(this).parents('#fNavArea').children('#fNav').slideToggle("slow");
		});
	
});

