function chkSeeker(){
    var what=document.getElementById("#seeker_text").value;
    alert(what);
    return false;
}
$("document").ready(function(){
    $(".logo").hover(function(){
	$("#head").addClass('on');
    },function(){
	$("#head").removeClass('on');
    });
    
    
    $(".dialog").hide();
    
});

