﻿//get a list of all linked CSS files

tinyMCE.init({
	// General options
	mode : "textareas",
	theme : "advanced",

	// Theme options
	theme_advanced_buttons1 : "bold,italic,underline,bullist,numlist,|,undo,redo,|,anchor,link,cleanup,code",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	content_css:"templates/default.css"	
});


function MCEon(id) {
	if (!tinyMCE.get(id)) tinyMCE.execCommand('mceAddControl', false, id);
}


$(document).ready(function(){

//	MCEon('basic_textfield');
//	tinyMCE.activeEditor.dom.loadCSS('templates/default.css');
//	$("link[rel='stylesheet']").each(function(){		
		//alert($(this).attr('href'));
		//cssfile = $(this).attr('href') ;
//	});
	
});


