/*********************************************************************************************************************************/
/* DOCUMENT READY CALLS **********************************************************************************************************/
/*********************************************************************************************************************************/
$(document).ready(function(){
	
	$('html').addClass('js');
	
	/*contact*/
	if($(".token").length >0){
		$.get("/public/token.php", function( txt ){
			$(".token").append('<input type="hidden" name="ts" value="' + txt + '">');
		});
	}
	/*contact*/
	
		
}); //close document.ready
