$(document).ready( function()
{
	$('#siteby span').hover
	(
		function()
		{//hover in
			$(this).html('<a href="http://www.eatdesign.com.au/" target="_blank">EATDESIGN</a>');
		},
		function()
		{//hover out
			$(this).text('Website by');
		}
	);
});
