/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function alternarBlog(div1,div2){
    jQuery('.'+div2).fadeOut(100);
    jQuery('.'+div1).fadeIn(500);
    
}
