$(function(){
	$(".imgbox a").click(function(){
	$(".imgl img").before("<img src='"+$(this).attr("href")+"' alt=''>");
	$(".imgl img:last").fadeOut("fast",function(){
	 $(this).remove();
	});
	});
});

function side_search(linkURL ,formName ,Afield){
	var val = document.forms[formName].elements[Afield].value;
	if(val != ""){
		var setURL = linkURL + "?action=get&body_title=" + val;
		setURL = encodeURI(setURL);
		location.href=setURL;
	}
}
