window.addEvent('domready', function() {

	$('topsearch').addEvents({
		focus: function() {
			this.value = '';
			this.morph({
				'color': '#000'
			});
		},
		blur: function() {
			this.style.color = '#fff';
			this.morph({
				'color': '#6d777f'
			});
			this.setProperty('value', this.getProperty('placeholder'));
		}
	});

	$('topsearch').setProperty('value', $('topsearch').getProperty('placeholder'));


});