//Replace Input Text For Search Input
$(function() {
	$("input.blurValue").focus(function() {
		if (this.value == this.defaultValue) {	this.value = ""; }
	}).blur(function() {
		if (this.value == "") { this.value = this.defaultValue; }
	})
}); 

$(function() {
	$(".filter-users").hide();
	$("#advanced-close").hide();
	
	$("#advanced-open").click(function() {
		$(".filter-users").show();
		$("#advanced-open").hide();
		$("#advanced-close").show();
	});
	
	$("#advanced-close").click(function() {
		$(".filter-users").hide();
		$("#advanced-open").show();
		$("#advanced-close").hide();
	});
	
});
