function redirectToWeddings() { document.location = '/contact/wedding'; }

window.addEvent( 'load', function() {
	var $ctype = $('contact_reason');
	if( $ctype ) {
		if( 'wedding' == $ctype.value ) { redirectToWeddings(); }
		$ctype.addEvent('change', function() {
			if( 'wedding' == $ctype.value ) { return redirectToWeddings(); }
		});
	}
	
	var myTips = new Tips( $$('.myTooltips'), {
		initialize: function() {
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 300, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(1);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		},
		maxTitleChars: 45,
		fixed: true,
		offsets: { x: -190, y: 25 }
	});
});
