﻿var bbcode_insert = {
	bold: function() {
		var sel = $('#photo_description').getSelection();
		$('#photo_description').replaceSelection('[b]' + sel.text + '[/b]');
	},
	italics: function() {
		var sel = $('#photo_description').getSelection();
		$('#photo_description').replaceSelection('[i]' + sel.text + '[/i]');
	},
	underline: function() {
		var sel = $('#photo_description').getSelection();
		$('#photo_description').replaceSelection('[u]' + sel.text + '[/u]');
	},
	color: function(color) {
		var sel = $('#photo_description').getSelection();
		$('#photo_description').replaceSelection('[color=' + color + ']' + sel.text + '[/color]');
	}
}
