// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
// BBCode tags example
// http://en.wikipedia.org/wiki/Bbcode
// ----------------------------------------------------------------------------
// Feel free to add more tags
// Edited by JLL 2010/12/14
// ----------------------------------------------------------------------------
mySettings = {
	previewParserPath:	'', // path to your BBCode parser
	markupSet: [
		{name:'Bold', key:'B', openWith:'[b]', closeWith:'[/b]'},
		{name:'Italic', key:'I', openWith:'[i]', closeWith:'[/i]'},
		{name:'Underline', key:'U', openWith:'[u]', closeWith:'[/u]'},
		{name:'Quotes', openWith:'[quote]', closeWith:'[/quote]'},
		{name:'Emoticons',
			dropMenu :[
				{name:':p', className:"emoticon-cheeky", replaceWith:':p' },
				{name:'8)', className:"emoticon-cool", replaceWith:'8)' },
				{name:'(_;)', className:"emoticon-flirty", replaceWith:'(_;)' },
				//{name:'&lt;3', className:"emoticon-heart", replaceWith:'&lt;3' },
				{name:':3', className:"emoticon-kitty", replaceWith:':3' },
				{name:'X)', className:"emoticon-laugh", replaceWith:'X)' },
				{name:':(', className:"emoticon-sad", replaceWith:':(' },
				{name:'oO', className:"emoticon-shock", replaceWith:'oO' },
				{name:':)', className:"emoticon-smile", replaceWith:':)' },
				{name:':D', className:"emoticon-smile-big", replaceWith:':D' },
				{name:':|', className:"emoticon-speechless", replaceWith:':|' },
				{name:';)', className:"emoticon-wink", replaceWith:';)' },
				{name:':{', className:"emoticon-moustache", replaceWith:':{' }
			]
		},
		{name:'Picture', key:'P', replaceWith:'[img][![Url]!][/img]'},
		{name:'Link', key:'L', openWith:'[url=[![Link Location]!]]', closeWith:'[/url]', placeHolder:'Your text here'}
	]
}
