/* ======================================================================================
 * Filename: theme/javascript/functions.js
 * Author: Rebecca Skeers, rebecca@webmistress.com.au, www.webmistress.com.au
 * Copyright: Rebecca Skeers 2006
 * Description: JavaScript functions for the ASCTI website.
 *
 * This file may not be used for any purpose other than for the ASCTI website 
 * and may not be copied or modified without written permission from the author.
 * ======================================================================================
 */
 
$(document).ready(function()
{	
	$("a.tool-print").click(
		function () 
		{
			if (window.print)
				window.print();
			else
				alert("Sorry, your browser doesn't support the print feature. Use the File menu on your browser to select Print.");
			return false;	
		}
	);
	
	$("a[rel='external']").attr("target","_blank");
	
	$("tr:odd").addClass("alt");
});

function writeEmail(email,host)
{
	var address=email + '@' + host;
	document.write('<a href=' + 'mail' + 'to:' +address + ' title="Email '+address+'">' + address + '</a>')
}


