// JavaScript Document
// www.laurellensaunders.com.au  = UA-9710540-1
var google_analytics_id = 'UA-9710540-1';

function jly_print_page(){
	window.print();
}



window.addEvent('domready', function(){
									 
	$$('a').each(function(element, i){
		if ((element.get('href')) && (element.get('rel')=='external')) {
			element.target = "_blank";
		}
	});

	$$('#menu li').each(function(element){
		element.addEvent('mouseover', function(){
			this.addClass('ieHover');
		});
		element.addEvent('mouseout', function(){
			this.removeClass('ieHover');
		});
	});

}); // end dom ready