$(document).ready(function() {
	$("#webdesign-en").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#webdesign-en-content").css("display","none");
	$("#webdesign-en").click(function(){
		$(this).next().slideToggle("fast");
		});
});

$(document).ready(function() {
	$("#webdesign-ja").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#webdesign-ja-content").css("display","none");
	$("#webdesign-ja").click(function(){
		$(this).next().slideToggle("fast");
		});
});

$(document).ready(function() {
	$("#name-en").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#profile-en").css("display","none");
	$("#name-en").click(function(){
		$(this).next().slideToggle("fast");
		});
});

$(document).ready(function() {
	$("#name-ja").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#profile-ja").css("display","none");
	$("#name-ja").click(function(){
		$(this).next().slideToggle("fast");
		});
});


