/**	competition overlay**/function OverlayOpen() {	// first check if the overlay has been loaded. if it has display it, if it hasn't then load it in	if( jQuery('#compOverlay').length > 0 ) {		jQuery('#compOverlay').show();	}else{		jQuery.get('/js/assets/competition_overlay.html', function(data) {			jQuery('body').append(data);		});	}}function closeOverlay() {	jQuery('#compOverlay').hide();}
