// ----------------------------------------------------------------------------
// 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
// ----------------------------------------------------------------------------
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:'Link', key:'L', openWith:'[url=[![Url]!]]', closeWith:'[/url]', placeHolder:'Your text to link here...'},
		{name:'List item', openWith:'[*] '},
		{name:'Quotes', openWith:'[quote]', closeWith:'[/quote]'},
	]
}


// attach it
$(document).ready(function()	{
  if(mySettings != undefined)
  {
    $('#bbcode').markItUp(mySettings);

    $('#smilies a').click(function() {
      $("#bbcode").focus();
      emoticon = $(this).attr("title");
      $.markItUp( { replaceWith:emoticon } );
      return false;
    });

  }
});
