
jQuery(document).ready ( function () {
	jQuery("#menu ul li").hover (
		function () { jQuery(this).addClass ('opened').find ("ul").stop(true).css('height', 'auto').slideDown ('slow'); },
		function () { jQuery(this).removeClass ('opened').find ("ul").stop(true).slideUp ('fast'); }
	);
	jQuery("#contact-form input").not (".submit").each ( extend_contact_form );
	jQuery("#contact-form textarea").each ( extend_contact_form );
	jQuery("a[rel='new_window']").click ( function () { window.open (this.href); return false; } );
	if ( typeof Lightbox !== "undefined" ) var lbox = new Lightbox();
});

function extend_contact_form ()
{
	this.value = this.title;
	jQuery(this).bind ( 'focus', function () { if ( this.value == this.title ) this.value = ''; });
	jQuery(this).bind ( 'blur', function () { if ( this.value == '' ) this.value = this.title; });
}

