/* 
function emailMe() {
	var name = 'hello';
	var address = 'lightvesselautomatic.org';
	var text = 'Email me';	
	document.write('<a href="mailto:'+name+'@'+address+'">'+text+'</a>');
}
 */
jQuery(document).ready(function($) {
	//Slideable, hideable archive list:
	$('#archives-2 ul').css({'display':'none'});
	$('#archives-2 h3').
		append('<small>(show)</small>').
		toggle(function() {
				//first click:
				$('#archives-2 ul').slideDown('xslow');
				$(this).find('small').html('(hide)');
				$(this).attr('title', 'hide the archives');
			}, function() {
				//second click:
				$('#archives-2 ul').slideUp('xslow');
				$(this).find('small').html('(show)');
				$(this).attr('title', 'show the archives');
			}).
		css('cursor', 'pointer').
		hover(function() {
				$(this).css('color', '#b10');
			}, function() {
				$(this).css('color', 'black');
			});
			
	//Hide email address from Spambots:
	//(nb. this means we no longer need to modify widgets.php)
	var name = 'hello';
	var address = 'lightvesselautomatic.org';
	var text = 'Email me';
	
	$('#meta ul').prepend('<li><a href="mailto:'+name+'@'+address+'">'+text+'</a></li>');
});

