<!--
var assina="Novembro / 2011";
//-->
<!-- 
mydate = new Date();
myday = mydate.getDay();
mymonth = mydate.getMonth();
myweekday= mydate.getDate();
weekday= myweekday;

test = new Date()
hour = test.getHours()
minute = test.getMinutes()

if(myday == 0)
        day = " Domingo, " 
else if(myday == 1)
      day = " Segunda, "
else if(myday == 2)
        day = " Ter&ccedil;a, " 
else if(myday == 3)
        day = " Quarta, " 
else if(myday == 4)
        day = " Quinta, "
else if(myday == 5)
        day = " Sexta, "
else if(myday == 6)
        day = " S&aacute;bado, "

if(mymonth == 0)
         month = "Janeiro "
else if(mymonth ==1)
         month = "Fevereiro "
else if(mymonth ==2)
        month = "Mar&ccedil;o "
else if(mymonth ==3)
       month = "Abril "
else if(mymonth ==4)
         month = "Maio "
else if(mymonth ==5)
         month = "Junho "
else if(mymonth ==6)
         month = "Julho "
else if(mymonth ==7)
       month = "Agosto "
else if(mymonth ==8)
      month = "Setembro "
else if(mymonth ==9)
     month = "Outubro "
else if(mymonth ==10)
     month = "Novembro "
else if(mymonth ==11)
     month = "Dezembro "

if ( minute < 10 )
{
minute = "0" + minute;
}
// -->
/*** 
    Simple jQuery Slideshow Script
    Released by Jon Raasch (jonraasch.com) under FreeBSD license: free to use or modify, not responsible for anything, etc.  Please link out to me if you like it :)
***/

function slideSwitch() {
    var $active = $('#slideshow DIV.active');

    if ( $active.length == 0 ) $active = $('#slideshow DIV:last');

    // use this to pull the divs in the order they appear in the markup
    var $next =  $active.next().length ? $active.next()
        : $('#slideshow DIV:first');

    // uncomment below to pull the divs randomly
    // var $sibs  = $active.siblings();
    // var rndNum = Math.floor(Math.random() * $sibs.length );
    // var $next  = $( $sibs[ rndNum ] );


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

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

$(function() {
    setInterval( "slideSwitch()", 9000 );
});

