var Trashskate = {
	init: function() {
		$('form input:text').filter('[data-placeholder]').each(function() {
			if ($(this).val() == '') {
				$(this).val($(this).data('placeholder'));
			}

			$(this).blur(function() {
				if ($(this).val() == '') {
					$(this).val($(this).data('placeholder'));
				}
			});

			$(this).focus(function() {
				if ($(this).val() == $(this).data('placeholder')) {
					$(this).val('');
				}
			});
		});
	}
};

$(document).ready(function() {
	Trashskate.init();
});

