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