/**
 * @author @zombiemx
 */

 jQuery(document).ready(function(){
	
	jQuery(".pyme").hover(function(){
        jQuery(".pymeP").stop().animate({width:"100px",height:"25px"}, 100);
		return false;        
    },function(){
        jQuery(".pymeP").stop().animate({width:"0px",height:"25px"}, 100);
		return false;        
    });

	jQuery(".serv").hover(function(){
        jQuery(".servP").stop().animate({width:"100px",height:"25px"}, 100);
		return false;        
    },function(){
        jQuery(".servP").stop().animate({width:"0px",height:"25px"}, 100);
		return false;        
    });
	
	jQuery(".man").hover(function(){
        jQuery(".manP").stop().animate({width:"100px",height:"25px"}, 100);
		return false;        
    },function(){
        jQuery(".manP").stop().animate({width:"0px",height:"25px"}, 100);
		return false;        
    });
	
	jQuery(".dis").hover(function(){
        jQuery(".disP").stop().animate({width:"100px",height:"25px"}, 100);
		return false;        
    },function(){
        jQuery(".disP").stop().animate({width:"0px",height:"25px"}, 100);
		return false;        
    });
	
	jQuery(".gob").hover(function(){
        jQuery(".gobP").stop().animate({width:"100px",height:"25px"}, 100);
		return false;        
    },function(){
        jQuery(".gobP").stop().animate({width:"0px",height:"25px"}, 100);
		return false;        
    });
	
	jQuery(".uni").hover(function(){
        jQuery(".uniP").stop().animate({width:"100px",height:"25px"}, 100);
		return false;        
    },function(){
        jQuery(".uniP").stop().animate({width:"0px",height:"25px"}, 100);
		return false;        
    });
	
	
	jQuery("#facebook").hover(function(){
        jQuery(this).attr("src", "assets/img/icon_face_on.png");
		return false;        
    },function(){
        jQuery(this).attr("src", "assets/img/icon_face_of.png");
		return false;        
    });
	
	jQuery("#twitter").hover(function(){
        jQuery(this).attr("src", "assets/img/icon_twt_on.png");
		return false;        
    },function(){
        jQuery(this).attr("src", "assets/img/icon_twt_of.png");
		return false;        
    });

	jQuery("#blogger").hover(function(){
        jQuery(this).attr("src", "assets/img/icon_bloger_on.png");
		return false;        
    },function(){
        jQuery(this).attr("src", "assets/img/icon_bloger_of.png");
		return false;        
    });

	jQuery("#youtube").hover(function(){
        jQuery(this).attr("src", "assets/img/icon_you_on.png");
		return false;        
    },function(){
        jQuery(this).attr("src", "assets/img/icon_you_of.png");
		return false;        
    });
	
	
	
 });
