/**************************************************************************************************/
/***
/***	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
-----------------------*/
$j= jQuery.noConflict();
/*-----------------------
	Initialize
-----------------------*/
$j(document).ready(function () {
	$j('#query').bind('focus',function (){
		if(this.value=='search...') { this.value='';$j('#query').toggleClass('focus'); }
	});
	$j('#query').bind('blur',function (){
		if(this.value=='') { this.value='search...';$j('#query').toggleClass('focus'); }
	});
});