// JavaScript Document

$(document).ready(function()
{
	$("#profile_em p.m1").click(function()
    {
		$(this).css({}).next("div.m2").slideToggle(300).siblings("div.m2").slideUp("slow");
       	$(this).siblings().css({});
	});
	
});

$(document).ready(function()
{
	$("#profile_ph p.m1").click(function()
    {
		$(this).css({}).next("div.m2").slideToggle(300).siblings("div.m2").slideUp("slow");
       	$(this).siblings().css({});
	});
	
});

$(document).ready(function()
{
	$("#profile_ws p.m1").click(function()
    {
		$(this).css({}).next("div.m2").slideToggle(300).siblings("div.m2").slideUp("slow");
       	$(this).siblings().css({});
	});
	
});

