$(document).ready(function(){

 $("#ee").hover(function(){
	var htmlStr = $("#searchResults").html();
	      $("#kk").text(htmlStr);
alert(htmlStr);

});

/* $("#mapq1").hover(
/*      function () {
/*	$("#maphid1").hide();
/*	$("#maphid1").css({ "left":($(window).width()/2 -250 + $(window).scrollLeft())+"px", "top": ($(window).height())/2-250+$(window).scrollTop() +"px"});
/*	$("#maphid1").show("slide");
/*      }, 
/*      function () { $("#maphid1").hide("slide");}
/*    );
*/

setTimeout("fxmove1()",100);
setTimeout("fxmove0()",500);	
});


function fxmove1()
{$("#heading2").show("blind", 600 );
}

function fxmove0()
{$("#topline").show("clip", 600 );
$("#omega").css({ "width":"173px"});
}


var sStep = 16; 
var sTimeout = 15;
var sLeft = 160;
var sRight = 160;
var wObj;

function winOpen() {
	wObj.style.display = 'block'; 
	
	if (sLeft > 0) {
		sRight += sStep; 
		sLeft -= sStep; 		
		var rect = 'rect(auto, '+ sRight +'px, auto, '+ sLeft +'px)';		
		wObj.style.clip = rect;		
		setTimeout(winOpen, sTimeout); 
	}
}

function winClose() {
	if (sLeft < sRight) {
		sRight -= sStep; 
		sLeft += sStep; 
		var rect = 'rect(auto, '+ sRight +'px, auto, '+ sLeft +'px)';
		wObj.style.clip = rect;
		setTimeout(winClose, sTimeout);
	}
	else wObj.style.display = 'none';
}

function appear() {  
if(op < 1) { 
op += 0.1; 
wObj.style.opacity = op; 
wObj.style.filter='alpha(opacity='+op*100+')'; 
t = setTimeout('appear()', 30); 
}}

setTimeout("wObj=document.getElementById('divwin4'); wObj.style.opacity=0; wObj.style.display='block'; op=0;appear()", 20000);
