/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
jQuery(document).ready(function() {

    var d = new Date();
    var day = d.getDay()-1;
    if (day < 0) { // Domingo
        day = 6;
    }   

    jQuery('#rosaryTabs').tabs({
                                fx: {
                                    opacity: 'toggle'
                                },
                                selected: day
                               });

    jQuery('.showMore').click(function() {
       var currentTab = jQuery(this).parent('.mistery').attr('id');
       jQuery('#'+ currentTab +' .misteryAbstract').slideToggle('fast', function() {
           if (jQuery('#'+ currentTab +' .misteryAbstract').is(':visible')) {
              jQuery('#'+ currentTab +' .showMore').css('background-image','url(wp-content/themes/mimbopro/images/rosario/arrow_up.png)');
              jQuery('#'+ currentTab +' .showMoreText').html('Cerrar');
              jQuery('#'+ currentTab +'Image').css('background-image', 'url(wp-content/themes/mimbopro/images/rosario/' + currentTab + '.png)');
           } else {
              jQuery('#'+ currentTab +' .showMore').css('background-image','url(wp-content/themes/mimbopro/images/rosario/arrow_down.png)');
              jQuery('#'+ currentTab +' .showMoreText').html('Ver M&aacute;s');
              jQuery('#'+ currentTab +'Image').css('background-image', 'url(wp-content/themes/mimbopro/images/rosario/santo_rosario.png)');
           }
       });

    });
});
