addOnLoad(function(){
	if (typeof jQuery == 'undefined') 
		{appendLinkElmJS()}
	else
		{appendLinkElmJQ()}
});

function appendLinkElmJQ(){
	jQuery(document).ready(function(){
		jQuery('head').append('<link rel="stylesheet" type="text/css" href="resources/js/jscalendar-1.0/calendar-blue2.css" />');
	});
}

function appendLinkElmJS(){
	var link = document.createElement('link');
	link.setAttribute('href','resources/js/jscalendar-1.0/calendar-blue2.css');
	link.setAttribute('rel','stylesheet');
	link.setAttribute('type','text/css');
	
	document.getElementsByTagName('head')[0].appendChild(link);
}