function spamfreemail1()
{ 
	var dom='&#x70;&#x6D;&#x65;&#x77;&#x65;&#x62;.&#x63;&#x6F;.&#x75;&#x6B;',
		display='&#x43;&#x6F;&#x6E;&#x74;&#x61;&#x63;&#x74; &#x55;&#x73;',
		x40='&#x40;',
		part1='&#x6D;&#x61;&#x69;&#x6C;&#x74;&#x6F;:',
		name='&#x73;&#x61;&#x6C;&#x65;&#x73;';
		stuff='?&#x73;&#x75;&#x62;&#x6A;&#x65;&#x63;&#x74;=&#x45;&#x6E;&#x71;&#x75;&#x69;&#x72;&#x79;';
	document.write('<a title="'+display+'" href="'+part1+name+x40+dom+stuff+'">'+display+'<\/a>');
}


function spamfreemail2()
{ 
	var dom='&#x70;&#x6D;&#x65;&#x77;&#x65;&#x62;.&#x63;&#x6F;.&#x75;&#x6B;',
		display='&#x50;&#x4D;&#x45;&#x57;&#x65;&#x62;',
		x40='&#x40;',
		part1='&#x6D;&#x61;&#x69;&#x6C;&#x74;&#x6F;:',
		name='&#x73;&#x61;&#x6C;&#x65;&#x73;';
		stuff='?&#x73;&#x75;&#x62;&#x6A;&#x65;&#x63;&#x74;=&#x45;&#x6E;&#x71;&#x75;&#x69;&#x72;&#x79;';
	document.write('<a title="'+display+'" href="'+part1+name+x40+dom+stuff+'">'+display+'<\/a>');
}

$(document).ready(function() {
    var hash = window.location.hash;
    var animating = false;
    
    (!hash) ?  
        hideAllExcept('#' + $('#toggleThis > div:first').attr('id')) 
            : hideAllExcept(window.location.hash);
    $('.hide').hide();

    $('a.toggle').click(function() {
    	if (animating)
    		return false;
        var href = $(this).attr('href');
        if ($(href).is('.hide'))
        {
       		animating = true;
       		$('.shown').hide("slow", function()
     		{
       			hideAllExcept(href);
       			$('.hide').hide();
       			$(href).hide().show("slow", function()
       			{
       				animating = false;
       			});
     		});
        }
        return false; // prevents the window from scrolling to the anchor
    });
    
	$('#banner').innerfade(
			{ animationtype: 'fade', speed: 'slow', timeout: 12000, type: 'sequence', containerheight: '220 px' }
			);
			

}); 
 
