(function(){

/**
 * CSSLoader
 */
	function CSSLoader(filePath,media)
	{
		document.write('<link rel="stylesheet" type="text/css" media="'+media+'" href="'+ filePath + '" />');
	}

/* load CSS for JS */
CSSLoader("css/forjs.css","all");

})();
