// JavaScript Document
$(document).ready(function(){
	$('#search_load').hide();
	$('#topmenu > .topnotselected').hover(function(){
		$(this).css("margin-top", "-2px");
		$(this).css("background-image", "url(../style/elements/tm_bkg_hover.png)");
		$(this).css("height", "24px");
		
	}, function()
	{
		$(this).css("margin-top", "0px");	
		$(this).css("height", "19px");
		$(this).css("border-bottom", "none");	
});

$('#searchbox').focus(function() {
  $(this).css("background-image", "url(../style/elements/sokruta2.jpg)");
});

$('#searchform').submit(function() {
  var $val_ = $('#searchbox').val();
  $('#searchbox_h').val($val_);
  $('#searchbox').val("");
  $('#search_load').show();
});
});

