/**
 * @author divonei macedo
 */

var preImages = new Array('http://yellowicon.com/newstest/wordpress/search/body-search.png', 'http://yellowicon.com/newstest/wordpress/search/close.png', 'http://yellowicon.com/newstest/wordpress/search/bottom-search.png', 'http://localhost/wordpress/search/top-search.png');

function preaload(){
	var i = 0;
	for(i = 0; i<preImages.length; i++){		
		var loadImage = new Image();
		loadImage.onload=function(){
			return false;
		}
		loadImage.src = preImages[i];
	}			
}

function close_search(){
	fadeOut('search_result');	
}

function init_result(){
	var pagesize = getPageSize();
	var pagescroll = getPageScroll();
	//alert(pagesize[3]);
	var div = document.getElementById('search_result');
	div.style.top = 80 +"px"; 	
	div.style.left = ((pagesize[0] - 20 - parseInt(div.style.width))/2)+"px";	
	fadeIn('search_result');
}