function clearInputField(field)
{
	document.getElementById(field).value = '';
}	

function resetInputField(field)
{
	document.getElementById(field).value = 'Search the site...';
}

$(document).ready(function() {		
	var currImg;
	$('img').each(function() {
		currImg = $(this).attr("src");
		if(currImg.match('^/albins/images/?(.*)$'))
		{
			
			$(this).attr("src", "http://www.albins.co.uk" + currImg);
		}
	});
});
