$(document).ready(function(){
	
	var acTab="#content1";
	
	// mouseovers
	$("#pagefooter").hover(function() {
 		$(this).css('cursor','pointer');
 		}, function() {
 		$(this).css('cursor','auto');
	});
	// top
	$("#pagefooter").click(function() {
		document.location.href='http://'+host+'/'+thispage+'#top';
	});
	
	// logo
	$("#logo").hover(function() {
 		$(this).css('cursor','pointer');
 		}, function() {
 		$(this).css('cursor','auto');
	});
	$("#logo").click(function() {
		document.location.href='http://'+host+'/';
	});
	
	// nav
	$("#nav ul li").mouseenter(function() {
		$(this).animate({paddingLeft: "8"}, "fast")
	  	return false;
	});
	$("#nav ul li").mouseleave(function() {
		$(this).animate({paddingLeft: "0"}, "fast")
	  	return false;
	});
	
	// Make text larger
	$("#address2").click(function() {
		$("#content").find("p").animate({fontSize: "18px"}, 2000)
	  	return false;
	});
	
});

function em(){
	d='.co.uk';
	b='@';
	a='info';
	c='meerkats';
	e = a+b+c+d;
	document.write('<a href="mailto:'+e+'">'+e+'</a>');
}
