// Optic Swerve Web Design, opticswerve.com
//------------------------------------------
$(document).ready(function() {
	// Notifications
	//---------------
	var notify = new Notify();
	notify.notify('Thanks for reading. Please bookmark and/or share this article via your favourite social media bookmarking service.');

	// Prettify Syntax Highlighter
	//-----------------------------
	prettyPrint();

});

/*-------------------------------------------|
| Notify									 |
|-------------------------------------------*/
function Notify() {
	this.bAutoClose = true;
	this.bInitialised = false;
	this.hideDelay = 6000;

	// Add 'notify' division to body
	//-------------------------------
	if($('#notify').length === 0) $('body').prepend("<div id='notify'><ul></ul></div>");

	// Display a notification
	//------------------------
	this.notify = function(note) {
		$('#notify ul').html('<li>' + note + '</li>');
		$('#notify').slideDown();
		if(this.bAutoClose) setTimeout("$('#notify').fadeOut();", this.hideDelay);

	};

	return true;

}
