/**
 *
 * @author alex pereira costa
 *
 */
$(function(){

    $(".news ul li:last").css("border-bottom", "0 none");
    
    $(".text-search").focus(function(){
        $(this).attr("value", "")
    })
    $(".text-search").blur(function(){
        $(this).attr("value", "Pesquisar")
    })
    
    $(".txt").focus(function(){
        $(this).css("border", "1px solid #cdd").css("background", "#EAEEF1")
    })
    
    $(".txt").blur(function(){
        $(this).css("border", "1px solid #DEDED6").css("background", "#fff")
    })
    
    
})

