1(function()
2{
3	Sidebar.prototype.addCiscoPalette = function(cisco, dir)
4	{
5		for (var i = 0; i < cisco.length; i++)
6		{
7			this.setCurrentSearchEntryLibrary('cisco', 'cisco' + cisco[i]);
8			this.addStencilPalette('cisco' + cisco[i], 'Cisco / ' + cisco[i],
9				dir + '/cisco/' + cisco[i].toLowerCase().replace(/ /g, '_') + '.xml',
10				';sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;',
11				null, null, 1.6, null, null, 'cisco');
12		}
13
14		this.setCurrentSearchEntryLibrary();
15	};
16
17})();
18