function oc(id)
{
    if(document.getElementById(id).style.display == 'none')
    {
        document.getElementById(id).style.display = 'block';
    }
    else
    {
        document.getElementById(id).style.display = 'none';
    }
}

$(document).ready(function () {
	$('div.expandable p a').click(function(){
                $('div.expandable div').each(function(){$(this).hide()});
		$(this).parent().parent().find('div').show();
	});
});
