/**************************************************************************
**
**		name: functions.js
**		version: 1.0
**		date created: 10.22.2008
**		author: Ben Belcourt
**
**		This file contains the basic functions for the Codion Interactive
**		company site.
**
**************************************************************************/


$(document).ready(function () {
	links.init();
});


var links = {
	init: function () {
		$('a[rel=external]').click(function (e) {
			e.preventDefault();
			links.openExternal($(this));
		})
	},
	
	openExternal: function (link) {
		var href = $(link).attr('href'); 
		window.open(href,'newWin');
	}
}