var arrSearch = new Array();
var arrAutoSearch = new Array();
arrSearch[1] = '박지성 열애|';
arrSearch[2] = '김문수 손바닥TV|';

	function autoSearch_print(type) {
		try{	arrSearch.sort(function() {return 0.5 - Math.random();});
if(arrSearch[0]) {
					arrAutoSearch = arrSearch[0].split("|");
					document.getElementById("preSWord").value = arrAutoSearch[0];
					if(arrAutoSearch[1]){
						document.getElementById("preSWord").style.backgroundImage = 'url("http://wstatic.dcinside.com'+arrAutoSearch[1]+'")';
						document.getElementById("preSWord").style.backgroundRepeat = 'no-repeat';
						document.getElementById("preSWord").style.paddingLeft = '38px';
						document.getElementById("preSWord").style.backgroundPosition = '6px -1px';
						if(type=='list'){
							document.getElementById("preSWord").style.width = '180px';
						}else{
							document.getElementById("preSWord").style.width = '200px';
						}
					}else{
						document.getElementById("preSWord").style.padding = '0px 0px 0px 10px;';
					}
					
				}
		}catch(e){
			//return false;
		}
	}

	var preSWord_click_b = true;
	function preSWord_click(obj) {
		if (preSWord_click_b) {
			obj.value = "";
			preSWord_click_b = false;
		}
	}
	function image_remove(input_name){ //키워드 검색어 input 창클릭시 사라짐 
			input_name.value="";
			input_name.style.backgroundImage="";
			input_name.style.padding = "0px 0px 0px 10px;"
		}

	

