var Page = {
	initialize: function() {

		var searchFormFocus = function() {
			if (this.value == 'search') {
				this.value = '';
			}
		}
	
		var searchFormBlur = function() {
			if (this.value == '') {
				this.value = 'search';
			}
		}

		$('search').addEvent('focus', searchFormFocus);
		$('search').addEvent('blur', searchFormBlur);

		new iFishEye({
			useAxis:"both",
			dimThumb: {width:43, height:60},
			dimFocus: {width:65, height:90},
			eyeRadius: 100,
			pupilRadius: 50,
			container: $('column-right'),
			'onPupilOver' : function(obj) {
			}
		});

	}
};

window.addEvent("domready", Page.initialize);