infoFade();
showInfo();

// hide / show Search Text on focus / blur
$('.searchfield').focus(
	function() {
		if($(this).val()=="Search") { $(this).val(""); }
  	}
    ).blur(function() {
		if($(this).val()=="") { $(this).val("Search"); }
	}
);


// recruitment slider
function showInfo() {
	$("#recruit a h2").click(function () {
	      $("#recruit p").show('slow');
	      return false;
	    }
	);
	
	$("span.zatvori").click(function () {
	      $("#recruit p").hide('fast');
	      return false;
	    }
	);
};


// show match report text on hover
function infoFade() {	
	$('ol.results li div.fixture-meta').hover(
	function() {
    	$(this).find('a.fixture-over').fadeIn('normal');
    },
    function() {
        	$(this).find('a.fixture-over').fadeOut('normal');
    }
	);
}