$(document).ready(function() {


		




$("#toolsWrapp").find(".toolsFlyC").hide().end().find("#tools").hover( function () 
 	 {
		 
  		 $(".toolsFlyC").stop(false, true).animate({ opacity:'toggle'},100/*,function(){$(".dailyVerse").stop(false, true).animate({ opacity:'toggle'},100)}*/);
  		 
  	 }, 
 	 function () 
 	 {	 
 	 		
    			$(".toolsFlyC").stop(false, true).animate({ opacity:'toggle'},100/*,function(){$(".dailyVerse").stop(false, true).animate({opacity:'toggle'},100)}*/);
    			
    		
 	 }
	);
	var bool = true;

$("#toolsWrapp").find(".navFly").hide().end().find("#navigation").hover( function () 
 	 {
		 
  		 $(".navFly").stop(false, true).animate({ opacity:'toggle'},100);
  		 
  	 }, 
 	 function () 
 	 {
 			
    		$(".navFly").stop(false, true).animate({ opacity:'toggle'},100);
    			
    		
 	 }
	);

$("#toolsWrapp").find("#searchFly").hide().end().find("#search").hover( function () 
 	 {
		 
  		 $("#searchFly").stop(false, true).animate({ opacity:'toggle'},100);
  		 
  	 }, 
 	 function () 
 	 {
 			
    		$("#searchFly").stop(false, true).animate({ opacity:'toggle'},100);
    			
    		
 	 }
	);

});//document.ready function




