$(function () {
	$('input.auth_field').focus(function () {
		if (this.name == this.value || this.name == 'password_confirm' || this.name == 'friend_email') {
			this.value = '';
			if (this.name == 'password' || this.name == 'password_confirm') {
				this.type = 'password';
			}
		}
	});
	$('input.auth_field').blur(function () {
		if (this.value == '') {
			if (this.name == 'password_confirm') {
				this.value = 'confirm password';
			} else if (this.name == 'friend_email') {
				this.value = 'e-mail address';
			} else {
				this.value = this.name;
			}
			if (this.name == 'password' || this.name == 'password_confirm') {
				this.type = 'text';
			}
		}
	});
	$('a.faq_title, a.ben_title').click(function () {
		$('#'+this.rel).animate({"height": "toggle"}, 'slow');
	});
	$('a.gallery_lb').lightBox({fixedNavigation:true});
});
