$(document).ready(function() {		 
	 $('.ref-item').mouseenter(function() {
     	$(this).children(".over").animate( { opacity: 1 }, 200  );
     });
     
   	 $('.ref-item').mouseleave(function() {
        $(this).children(".over").delay(350).animate( { opacity: 0 }, 200  );
     });
	 
	$('.icon-plus').mouseenter(function() {
		$('.ref-management span.text').html("P&#345;idat reference");
	});
	$('.icon-plus').mouseleave(function() {
		$('.ref-management span.text').html("");
	});
	
	$('.icon-minus').mouseenter(function() {
		$('.ref-management span.text').html("Ubrat reference");
	});
	$('.icon-minus').mouseleave(function() {
		$('.ref-management span.text').html("");
	});
	 
});
