function toggle_contact(anc){
	$(".contact").slideToggle();
	if($(anc).hasClass("current")){
		$(anc).removeClass("current");
	}
	else{
		$(anc).addClass("current");
	}
}

function initial_dom_register(){
	$(".numeric").numericOnly();
	$(".email").emailOnly();
	$(".datepicker").datepicker();
	$("a").anchorSetCurrent().hashLinkFix();
	//$("a[rel*=colorbox]").colorbox();
	//$("a[rel*=facebox]").facebox();
}

function facebox_dom_register(){
	$(".numeric").numericOnly();
	$(".email").emailOnly();
	$(".datepicker").datepicker();
	
	//$("a[rel*=colorbox]").colorbox();
}
