$(document).ready(function() {	

	$("#search_text").DefaultValue("Hledaný výraz");
	$mouse_enter = false;

	$("#search_box_button a").mouseenter(function(){
		if($("#search_box").css('top')=="-145px")
		{
			searchbox_show();
		}
	});

	/*$("#search_box_content").mouseout(function(){
			if($("#search_box").css('top')=="0px")
			{
				$("#search_box_button").css({'top': '60px'});
				$("#search_box_button").animate({'top': '10px'}, 150, function() {});
				$("#search_box").animate({'top': '-145px'}, 300, function() {});
				$("#search_box_button a").css({'opacity': '0.7'});
			}
	});*/
	
		/*$("#search_box").mouseout(function(){
				if($("#search_box").css('top')=="0px");
				{
					searchbox_hide();
				}
		});*/
		
	$(document).mousemove(function(e){
		if(e.pageY>130&&$mouse_enter == true)
		{
			searchbox_hide();
		}
	});
	
});

function searchbox_hide()
{
	$mouse_enter = false;
	if(ie==false){
		$("#search_box_button a").css({'opacity': '0.7'});
	}
	$("#search_box_button").animate({'top': '10px'}, 150, function() {});
	$("#search_box").animate({'top': '-145px'}, 300, function() {});
}

function searchbox_show()
{
	$mouse_enter = true;
	if(ie==false){
		$("#search_box_button a").css({'opacity': '1'});
	}
	$("#search_box").animate({'top': '0px'}, 200, function() {});
	$("#search_box_button").animate({'top': '100px'}, 250, function() {});
}
