/**************************************************************************************************/
/***
/***	WORDPRESS MEMBERS LIST PLUGIN JAVASCRIPT
/***	-----------------------------------------------------------------------
/***	Written by Matthew Praetzel. Copyright (c) 2009 Matthew Praetzel.
/***	-----------------------------------------------------------------------
/***	All Rights Reserved. Any use of these functions & scripts without written consent is prohibited.
/***
/**************************************************************************************************/

/*-----------------------
	Variables
-----------------------*/
$ = jQuery;
/*-----------------------
	Initialize
-----------------------*/
$(document).ready(function () {
	$('#query').bind('focus',function (){
		if(this.value=='search...') { this.value='';$('#query').toggleClass('focus'); }
	});
	$('#query').bind('blur',function (){
		if(this.value=='') { this.value='search...';$('#query').toggleClass('focus'); }
	});
	
	//Hide empty custom META data	
	$('.tern_wp_members_twitter_handle').each(function() { $('a[href="http://twitter.com/"]').parent().hide(); });
	$('.tern_wp_members_facebook_url').each(function() { $('a[href=""]').parent().hide(); });
	$('.tern_wp_members_linkedin_url').each(function() { $('a[href=""]').parent().hide(); });
	$('.tern_wp_members_user_url').each(function() { $('a[href=""]').parent().hide(); });
	
});