jQuery(document).ready(function($){
	
	/*//////////////////////////////////////////////// search form stuff */
	$('.default-value').each(function() {
    	var default_value = this.value;
    	$(this).focus(function() {
        	if(this.value == default_value) {
            	this.value = '';
        	}
    	});
    	$(this).blur(function() {
        	if(this.value == '') {
            	this.value = default_value;
       	 	}
    	});
	});
	
	/*//////////////////////////////////////////////// popups! */
	$.easy.popup();	
	
	/*//////////////////////////////////////////////// sidebar swappy thing */
	function initSideSwap () {
		$("#sidebar h5 a").click(handleSwapClick);
	};

	function handleSwapClick () {
		if ($(this).is(".sidenav")) {
			$("#widgets_div").show();
			$("#comments_div").hide();
		} else if ($(this).is(".sidespeak")) {
			$("#widgets_div").hide();
			$("#comments_div").show();
		};
	
		$("#sidebar h5 a").removeClass("active");
		$(this).addClass("active");
	
		return false;
	};
	initSideSwap();

});

