function toggleLabel(inputID)
{
	$(inputID).val($(inputID).attr('title'));
	$(inputID).focus(function(){
			if($(this).val() == $(this).attr('title'))
				{
				$(this).val('');
				}
		});
		
		$(inputID).blur(function(){
			if($(this).val() == '')
				{
				$(this).val($(this).attr('title'));
				}
		});
}

$().ready(function() {
	$('#searchsubmit').hover(
	function() {
		$(this).attr('src', 'images/local/skin/loupe2.png');
		},
	function() {
		$(this).attr('src', 'images/local/skin/loupe1.png');
		}
	);
	
	toggleLabel('#newsletterInput');
	toggleLabel('#searchinput');
	});

	$(function() { $("#menu").lavaLamp({ fx: "easeOutBack", speed: 700 })});
