﻿/* New Jquery code */
$(document).ready(function() {
	//Initialise methods
	bells.init();
});

bells = {
	init: function() {
		bells.external();
	},
	//Open new window
	external: function() {
		$("a[rel='external']").click(function() {
			window.open(this.href, "_blank");
			return false;
		});
	}
}
