$(document).ready(function () {

$('span.encode').each(function() {
var link_html = '';
$(this).children('span').each(function() {
link_html += $(this).html();	
$(this).remove();
});
var address = $(this).html();
address = address.replace(/\(at\)/g,'@');
address = address.replace(/\(dot\)/g,'.');
link_html = (!link_html) ? address : link_html;
$(this).replaceWith('<a href="mailto:'+ address +'">'+ link_html +'</a>');
});


$('.number').blur(function() {
var value = $(this).val();
value = value.replace(/[^0-9]/g,'');
$(this).attr('value',value);
});

if($('#header').length){
$('#header').cycle({
	fx: 'fade'
});
};


});
