/**
 * @author livingfarmspc4
 */
var ajaxRequest = function(url,container){
	
	//alert('call function ajax');
	
	var a=new Ajax(url,{
		method:"get",evalScripts:true,
		update:$(container)
	}).request();
}
var getCal=function(){
	$$('a.calLink').each(function(el){
		el.addEvent('click',function(e){
			ajaxRequest(el.rel,'calendar-wrapper');
		}.pass(el));
	});
}
window.addEvent('domready',function(){
	getCal();
});
