// JavaScript Document

$(document).ready(function(){
	$('.date').datepicker({dateFormat:'yy-mm-dd'});
	tinyMCE.init({ mode : "specific_textareas", editor_selector  : "rtf", directionality : "ltr" , theme : "advanced",
	theme_advanced_buttons1 : "justifyleft,justifycenter,justifyright,justifyfull,|,link,unlink,|,bullist,numlist,image,cleanup,code,forecolor,backcolor,|,hr,sub,sup,|,formatselect,fontselect,fontsizeselect",
	theme_advanced_buttons2 : false,
	theme_advanced_resizing : true
	});
	tinyMCE.init({ mode : "specific_textareas", editor_selector  : "rtf_rtl", directionality : "rtl" , theme : "advanced",
	theme_advanced_buttons1 : "justifyleft,justifycenter,justifyright,justifyfull,|,link,unlink,|,bullist,numlist,image,cleanup,code,forecolor,backcolor,|,hr,sub,sup,|,formatselect,fontselect,fontsizeselect",
	theme_advanced_buttons2 : false,
	theme_advanced_resizing : true
	});
});

