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