/**
* This script controls the jquery/ajax functionality of the mini events calendar
**/

// Forward and back month links

$(document).ready(function(){
  $('a[class="minical"]').click(function(){

      //Ajax Loader
      $('#minieventscal').html('<img src="/img/ajax-loader.gif" alt="" width="31" height="31" style="width:31px;margin:75px 135px;" />');


      var sTarget = $(this).attr('href');
      //remove trailing slash
      sTarget = sTarget.replace(new RegExp(/\/$/),'');
      sTarget = sTarget+='/minical/1' ;

    $.get(sTarget,'', function(j){
      $('#minieventscal').html(j);
    })

    return false;
  });

}) ;

// Forward and back year links

