// JavaScript Document
jQuery.noConflict();
function plieg()
{
	jQuery('#show_details').html('<label onclick="dplieg()" class="link_label">Ocultar Detalles</label>');
	jQuery('#details_domain').slideDown("slow");
}

function dplieg()
{
	jQuery('#show_details').html('<label  onclick="plieg();" class="link_label">Mostrar Detalles</label>');
	jQuery('#details_domain').slideUp("slow");
}
