


//###################################
// On Load Function...
//###################################
jQuery(document).ready(function() {
    /**
     * We show a simple loading indicator
     * using the jQuery ajax events
     */


	//open any anchor with a rel="" in a new window
	$("a[@rel]").click(function() {
		newWindow = window.open(this, "newWin", "toolbar=yes,location=yes,scrollbars=yes,resizable=yes,width=815,height=650");
		newWindow.focus(); //puts window on top of all others
		return false; //stop link from working normally
	});


});
