/*
	************************
	* JQUERY JS            *
	* BY BUBBLE            *
	* RECKLESSNEWMEDIA.COM *
	************************
*/

$(document).ready(function(){
						   
	$('a[rel=external]').attr('target','_blank');
	
	$('a[rel*=facebox]').facebox();
	
	$("#LessonContent").rte("css url", "images/");
	
	$("#navmiddle li").hover(
        function(){ $("ul", this).slideDown(); }, 
        function() { $("ul", this).slideUp();  } 
    );

	$("#edit_lesson").click(function () {
		$("#lesssonedit").slideToggle("slow");							  
	});
	
	$("#updateContent").click(function () {
		var content = $("#LessonContent").text();	
		alert(content);
		$.post("ajax.php", { page: "lessonContent", content: content  },
		function(data){
			if (data == 'UPDATE')
			{
				$(".error").hide();
				$("#lesssonedit").slideUp();
				$(".msg").html("Content Has been Successfully updated");
				$(".msg").fadeIn("slow");

			} 
			else if (data == 'ERROR')
			{
				$(".msg").hide();
				$(".error").html("Couldn't update the content for this page.");
				$(".error").fadeIn("slow");
			}
		});
		
	});

	
});
