// JavaScript Document

var pause = false,
		clicked = false;
		
$(document).ready(function()
{
	$('.encodeme').emailencode({"period":"%","atsign":"^"});
	
	removeSpace();
});


function removeSpace()
{
	var $body = $('BODY'),
			html = $body.html();
			
	html = html.replace(/[\t|\n]+/ig,'').replace(/[\s]{2,}/ig,'');
	
	$body.html(html);
}
