/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
iBox.setPath('ibox/');
iBox.padding = 50;
iBox.inherit_frames = false;
var status_reg = 0;	//0 hide

$(document).ready(function()
{
	if($("#reg").is("*"))
	{
		$("#reg_cnt").hide();
		$("#reg").bind('click', function()
		{
			if(status_reg == 0)
			{
				$("#reg_cnt").show();
				status_reg = 1;
			}else
			{
				$("#reg_cnt").hide();
				status_reg = 0;
			}
			
		});
	}
	
	if($("#dod_adr").is("*"))
	{
		$("#dod_adr_cnt").hide();
		$("#dod_adr").bind('click', function()
		{
			if(status_reg == 0)
			{
				$("#dod_adr_cnt").show();
				status_reg = 1;
			}else
			{
				$("#dod_adr_cnt").hide();
				status_reg = 0;
			}
			
		});
	}
});
