var presetFormValues =
{
	init: function()
	{
		var inputEmail = document.getElementById("input_subscribe_sidebar");
		inputEmail.onfocus = function () {if(this.value=='Your Email Here')this.value='';};
		inputEmail.onblur = function () {if(this.value=='')this.value='Your Email Here';};
	}
};

Core.start(presetFormValues);

