Cufon.set('fontFamily', 'Museo Slab').replace('#header h1',{
    autoDetect:true
})
('#header .info p')
    ('#banner h1, #banner p')
    ('#featured .block h3')
    ('#main .feed h3')
    ('#content .title')
    ('#post .brief')('#sidebar h3');

$().ready(function(){
    $('#frmcontact').validate();
    setInterval(function(){
        var $active = $('#xslider IMG.active');

        if ( $active.length == 0 ) $active = $('#xslider img:last');

        var $next =  $active.next().length ? $active.next()
        : $('#xslider IMG:first');

        $active.addClass('last-active');

        $next.css({
            opacity: 0.0
        })
        .addClass('active')
        .animate({
            opacity: 1.0
        }, 1000, function() {
            $active.removeClass('active last-active');
        });


    }, 5000 );
});
