// Initialize jQuery
$(document).ready(function(){

// OVERLABEL
// http://scott.sauyet.com/Javascript/Demo/Overlabel/
	$("label.overlabel").overlabel();
});

// dynamically add functions to the window.onload event
function addOnLoad(fn) {
	if (window.addEventListener) { // W3C standard
		window.addEventListener('load', fn, false); // NOTE: **not** 'onload'
	}
	else if (window.attachEvent) { // Microsoft
		window.attachEvent('onload', fn);
	}
}



