/* Newsletter input */

$(document).ready(function() {

	/* Normal conditions */
	$("#newsletter_email").val(language['newsletter_input']);
	$("#newsletter_email").css("color", "#D0CEC9");

	/* Focus */
	$("#newsletter_email").bind("focus", function(e) {
		if($(this).val() == language['newsletter_input']) {
			$(this).val("");
			$(this).css("color", "#544E44");
			$(this).focus();
		}
	});
	
	/* Focus */
	$("#newsletter_email").bind("blur", function(e) {
		if($(this).val() == "") {
			$(this).val(language['newsletter_input']);
			$(this).css("color", "#D0CEC9");
			$(this).blur();
		}
	});
						   
});