/* nkcmedia.net Kalender 
  frido@nkcmedia.net
  jquery für ajax requests
*/
var now = new Date();
var gmonth =  now.getMonth()+1;
  $(document).ready(function(){
    PrintCalendar(gmonth);
  });
function PrintCalendar(montha)
{
$("#calendar_main").load("http://"+location.hostname+"/calendar/func.php",{cl_month:montha},function(){
  });
}
function ResetCalendar()
{
var now = new Date();
var gmonth =  now.getMonth()+1;
PrintCalendar(gmonth);
}
