$(document).ready(
	function(){
		
		$.fn.search = function() {
			return this.focus(function() {
				if( this.value == this.defaultValue ) {
					this.value = "";
				}
			}).blur(function() {
				if( !this.value.length ) {
					this.value = this.defaultValue;
				}
			});
		};
		// newsletter IDs
		$("#s").search();;
		
		
		$('#loginbox').hide();
        
		$(".loginbtn").click(function(e){
		                e.preventDefault();
		                $('#loginbox').slideToggle('fast', function() {
					    // Animation complete.
					  	}).css ('z-index' , '999');
					  
		        });

		
		
	}
	
);


