$.fn.tituloFlash = function(opciones) {
	return this.each(function() {
		var opt = {
			txt			: $(this).text(),
			textalign	: 'left',
			textcolor	: '#000000',
			hovercolor	: '#CCCCCC',
			linkcolor	: '#000000',
			w			: 600,
			h			: 40,
			swfURL		: '/swf/walkway_semibold.swf'
		}
		$.extend(opt, opciones);
		
		var tempHeight = parseInt($(this).height());
		//if(tempHeight > opt.h) opt.h = tempHeight;
		
		var tituloFlashID = 'titulo_'+parseInt(Math.random()*999999);
		$(this).attr('id',tituloFlashID);
		
		var params = {
		  menu	: "false",
		  wmode	: "transparent"
		};
		var attributes = {
		  id	: tituloFlashID,
		  name	: tituloFlashID,
		  wmode	: "transparent"
		};

		swfobject.embedSWF(opt.swfURL, tituloFlashID, opt.w, opt.h, "9.0.0","expressInstall.swf", opt, params, attributes);
		
	});
}

