 $(document).ready(
  function()
	{
	
		jQuery('.identity').hover(function()
    {
    jQuery('#io').stop().fadeIn(500);
    
    },
                                function()
		{

    
    });
    
    
    jQuery('#io').hover(function()
    {
    
    },
                                function()
		{
    jQuery('#io').fadeOut(300);
    });
    
    
    
    
    		jQuery('.web').hover(function()
    {
    jQuery('#wo').stop().fadeIn(500);
    
    },
                                function()
		{
    
    });
    
    
    jQuery('#wo').hover(function()
    {
    
    },
                                function()
		{
    jQuery('#wo').stop().fadeOut(300);
    });
    
    
    	jQuery('.print').hover(function()
    {
    jQuery('#po').stop().fadeIn(500);
    
    },
                                function()
		{
    
    });
    
    
    jQuery('#po').hover(function()
    {
     jQuery('#po').fadeIn(300);
    },
                                function()
		{
    jQuery('#po').stop().fadeOut(300);
    });
    
    
    
    
    
    
    
    
    
    });

