if (!window.opera) {
	try {
	  document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}
}

$(function() {

		$('#search_input').focus(function(){
			$(this).css({'border-color':'#a3a3a3','background':'#fff'});
		});

		$('#search_input').blur(function(){
			$(this).css({'border-color':'#fff','background':'#dedede'});
		});

		$('#top_link li:last').css('border','none');
		$('#mid_link li:last').css('border','none');
		hr = $('#centrum hr:last');
		if ($(hr).next().hasClass('pager')) $(hr).remove();
		$('button').mouseover(function(){
			$(this).css({'color':'#f04211'});
		});

		$('button').mouseout(function(){
			$(this).css({'color':'#1b87ab'});
		});
		$('a.reply_vac').click(function(){
			$(this).parent().next().toggleClass('open_form');
			return false;
		});

  $(".lightbox").fancybox({'imageScale': true});

  $("#menu ul li").mouseenter(function(e){
    $(this).addClass('open');
  });

  $("#menu ul li").mouseleave(function(e){
    $(this).removeClass('open');
  });


});
