// ----------------------------------------------------------------------------
// 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
// ----------------------------------------------------------------------------
youtube_label ='Ingrese el ID del video de YouTube: Ejemplo: Si la URL de su video es: http://www.youtube.com/watch?v=324UsTQsHAM El ID es: 324UsTQsHAM'
swf_label ='Ingrese la URL del archivo swf'
mySettings = {
markupSet: [
{name:'Negrita', key:'B', openWith:'[b]', closeWith:'[/b]'},
{name:'Cursiva', key:'I', openWith:'[i]', closeWith:'[/i]'},
{name:'Subrayado', key:'U', openWith:'[u]', closeWith:'[/u]'},
{separator:'---------' },
{name:'Alinear a la izquierda', key:'aleft', openWith:'[left]', closeWith:'[/left]'},
{name:'Centrar', key:'', openWith:'[center]', closeWith:'[/center]'},
{name:'Alinear a la derecha', key:'', openWith:'[right]', closeWith:'[/right]'},
{separator:'-' },
{name:'Color', dropMenu: [
{name:'Rojo oscuro', openWith:'[color=darkred]', closeWith:'[/color]' },
{name:'Rojo', openWith:'[color=red]', closeWith:'[/color]' },
{name:'Naranja', openWith:'[color=orange]', closeWith:'[/color]' },
{name:'Marr&oacute;n', openWith:'[color=brown]', closeWith:'[/color]' },
{name:'Amarillo', openWith:'[color=yellow]', closeWith:'[/color]' },
{name:'Verde', openWith:'[color=green]', closeWith:'[/color]' },
{name:'Oliva', openWith:'[color=olive]', closeWith:'[/color]' },
{name:'Cyan', openWith:'[color=cyan]', closeWith:'[/color]' },
{name:'Azul', openWith:'[color=blue]', closeWith:'[/color]' },
{name:'Azul oscuro', openWith:'[color=darkblue]', closeWith:'[/color]' },
{name:'Indigo', openWith:'[color=indigo]', closeWith:'[/color]' },
{name:'Violeta', openWith:'[color=violet]', closeWith:'[/color]' },
{name:'Negro', openWith:'[color=black]', closeWith:'[/color]' }
]},
{name:'Tama&ntilde;o', dropMenu :[
{name:'Mi&ntilde;atura', openWith:'[size=7]', closeWith:'[/size]' },
{name:'Peque&ntilde;a', openWith:'[size=9]', closeWith:'[/size]' },
{name:'Normal', openWith:'[size=12]', closeWith:'[/size]' },
{name:'Grande', openWith:'[size=18]', closeWith:'[/size]' },
{name:'Enorme', openWith:'[size=24]', closeWith:'[/size]' }
]},
{name:'Fuente', dropMenu :[
{name:'Arial', openWith:'[font=Arial]', closeWith:'[/font]' },
{name:'Courier New', openWith:'[font=Courier New]', closeWith:'[/font]' },
{name:'Georgia', openWith:'[font=Georgia]', closeWith:'[/font]' },
 {name:'Times New Roman', openWith:'[font=Times New Roman]', closeWith:'[/font]' },
 {name:'Verdana', openWith:'[font=Verdana]', closeWith:'[/font]' },
{name:'Trebuchet MS', openWith:'[font=Trebuchet MS]', closeWith:'[/font]' },
{name:'Lucida Sans', openWith:'[font=Lucida Sans]', closeWith:'[/font]' },
{name:'Comic Sans', openWith:'[font=Comic Sans]', closeWith:'[/font]' }
]},
{separator:'---------------' },
{name:'Imagen', key:'P', replaceWith:'[img][![Url]!][/img]'},
{name:'Enlace', key:'L', openWith:'[url=[![Url]!]]', closeWith:'[/url]', placeHolder:'Texto a enlazar...'},
{name:'Insertar video de YouTube', replaceWith:'[video=http://www.youtube.com/v/[!['+youtube_label+']!]]'},
{name:'Insertar URL archivo SWF', key:'W', openWith:'[swf=[!['+swf_label+']!]]'},
{separator:'---------------' },
{name:'Citar', key:'Q', openWith:'[quote]', closeWith:'[/quote]'}]

};


