$(function(){
	$('#menu a')
        .mouseover(function(){
            getpaddingLeft = $(this).css("paddingLeft");
            $(this).stop().animate({paddingLeft: 20, width: 210}, {duration:500})
        })
	    .mouseout(function(){
            $(this).stop().animate({paddingLeft: getpaddingLeft,width: 190}, {duration:500})
        })
});

$(function(){
    $('#side form.newsletter input.mailaddress')
        .focus(function(){
            $(this).css("color", "#000");
            $(this).val("");
        })
});
