$(document).ready(function(){
	$(".a").hover(
	function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
	});
	
});


function detaily($id){

  if (document.getElementById($id).style.display == 'none'){
    document.getElementById($id).style.display ='block';  
  } 
  else {
    document.getElementById($id).style.display ='none'; 
  }
}
