/*
 * Main Core js file for chrisgibbons.co.uk // point12
 */

(function($j) {


	Point12 = {

		/*
		* Function: onReady
		* Called when the DOM has been loaded by the browser and is "ready"
		*/
		onReady: function() {
			this.initExternalLinks();
		},


		/*
		* Function: initCufon
		*/
		initExternalLinks: function() {
			$j('a.js-external').click(function() {
				window.open($j(this).attr('href'));
				return false;
			});		}

	};


	$j().ready(function() {
		Point12.onReady();
	});


})(jQuery);	

