﻿//Javascript Document
$j(document).ready(function(){

	var DOB = setInterval
	    (
	    /* create an anonymous function to run the code */
	    function() {
	    /* check if the function '$' exists (since we need to use it) and that
	    the container has been loaded (second condition) */
	    
	    if(typeof $!='undefined' && $('ka_joinDOB'))
	    {       
	    	var bod = document.getElementsByTagName('body')[0];
	    	if(bod.id == "ka_register"){
		    	$('ka_joinDOB').getElementsByTagName('label')[0].innerHTML = 'Date of Birth:<span style="font-weight:normal; font-style:italic;"> (will not be displayed in profile)</span>';
	    	}
	    	
	    	clearInterval(DOB);
	    }
	    },20
	    );
});
