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:75, height:105},
			dimFocus: {width:96, height:134},
			eyeRadius: 100,
			pupilRadius: 50,
			container: $('column-right'),
			'onPupilOver' : function(obj) {
			}
		});

	}
};

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