	//Search is not included in the address thing cos, i don't think u should be about to bookmark a search
	function searchIt(idx){
		var page_name=document.searchform.q.value;
		$.ajaxSetup ({  cache: false });
		var toLoad = "fetch_content.php?q="+page_name+"&idx="+idx;
		if(idx==0){
		   $("#helper").show(1);
		$("#hider")
		.load(toLoad, 500, function(responseText){
			$("#div_body_padding").html(responseText);
			$("#helper").css({'opacity':'1'}).fadeTo(500,0).hide(1);
		});
		}else{
			$("#div_body_padding").load(toLoad);
		}
		return false;
	}
	
	 function sidePicLoader(idx){
		var page_name=idx;
		$.ajaxSetup ({  cache: false });
		var toLoad = "fetch_content.php?page_name="+idx;
		$.ajaxSetup ({  cache: false });
		var toLoad = "fetch_content.php?page_name="+page_name;
		$("#helper").show(1);
		$("#hider")
		.load(toLoad, 500, function(responseText){
			$("#div_body_padding").html(responseText);
			$("#helper").css({'opacity':'1'}).fadeTo(500,0).hide(1);
		});
		return false;
	}
