/* ===============================================================================
	ETC GLOBAL JAVASCRIPT:
	All these functions are needed globally
==================================================================================
	NOTES:
	- 
================================================================================*/

// Executing at document ready
function init(){
	// Set JS class on body
	$('body').addClass('js-on');

	// Automagically hide/show default input text onFocus
	$('#sitesearch').emptyonfocus();

	// Activate Smooth Scrolling Anchors on .wrapper scope
	//$('.wrapper').scrollanchors();

	// Convert hidden email addresses to proper email links
	$('.email').replacemail({domain:'etcnl.nl'});
}

/* ===============================================================================
	On Document Ready: load init()
================================================================================*/
$(document).ready(init);