$(document).ready(function(){
    $('.Apagar').click(function(){
        if(this.value == this.defaultValue){
            this.value = '';
        }
    });
    $('.Apagar').blur(function(){
        if (this.value == ''){
            this.value = this.defaultValue;
        }
    });
    $('.Slide').cycle({
        fx:'none',
        speed:'500',
        timeout:'6000',
        sync: true,
        pager:'.Paginator'
    });
    $('.CarouselNoticias').cycle({
        fx:'scrollHorz',
        speed:'400',
        timeout:'10000',
        sync: true,
        prev:'.PrevNoticia',
        next:'.NextNoticia'
    });
    $("a[rel^='prettyPhoto']").prettyPhoto();
});
