$(document).ready(function()	{
  $('#bbcode').markItUp(myBbcodeSettings);
  $('#emoticons a').click(function() {
    emoticon = $(this).attr("title");
    $.markItUp( { replaceWith:emoticon } );
    return false;
  });
  $('#image').change(function() {
    image = '[img]'+$("#image :selected").val()+'[/img]'; 
    $.markItUp( { replaceWith:image } );
    return false;
  });
});  
