<?xml version="1.0" encoding="UTF-8"?>
<Module>
  <ModulePrefs title="Color My iGoogle by symbii.com"
               title_url="http://symbii.com/?src=ig"
               description="This inlined gadget lets you select a page color and gadget color to completely change all colors you see on iGoogle. It styles the things that the Google themes do not, so it works very well with any theme you may already be using. 
It also has support for those with multiple tabs to create different color schemes/skins for different tabs (add the gadget to each tab you want to color, and use the Tab Number in the preferences to select which number tab should be colored). It offers the ability to either choose from preset colors, or provide your own hex color values for the more technical."
               author="Niraj Sanghvi"
               author_email="niraj.sanghvi+igcolor@gmail.com"
               screenshot="http://niraj.sanghvi.googlepages.com/igcolor.png"
               thumbnail="http://niraj.sanghvi.googlepages.com/igcolor_thumb.png"
               author_affiliation="Something You Might Be Interested In"
               author_location="Chicago, IL, USA"/>
  <UserPref name="mycolor" display_name="Select Page Color From Dropdown" default_value="White" datatype="enum" >
    <EnumValue value="#7788DD" display_value="Deep Blue" />
    <EnumValue value="#4455CC" display_value="Dark Blue" />
    <EnumValue value="#F0F0FF" display_value="Light Blue" />
    <EnumValue value="#FF33CC" display_value="Magenta" />
    <EnumValue value="#FF3333" display_value="Red" />
    <EnumValue value="#00EE00" display_value="Green" />
    <EnumValue value="#008800" display_value="Dark Green" />
    <EnumValue value="#00BFFF" display_value="Aqua Blue" />
    <EnumValue value="#CC9900" display_value="Burnt Amber" />
    <EnumValue value="#FF99FF" display_value="Light Purple" />
    <EnumValue value="#E9E9E9" display_value="Gray" />
    <EnumValue value="#F87217" display_value="Orange" />
    <EnumValue value="Yellow" />
    <EnumValue value="#000000" display_value="Black" />
    <EnumValue value="White" />
    <EnumValue value="#CCFFCC" display_value="Light Green" />
    <EnumValue value="#FFCC99" display_value="Light Red" />
    <EnumValue value="#FFFFCC" display_value="Light Creme" />
    <EnumValue value="#FFFF99" display_value="Light Yellow" />
    <EnumValue value="#FFC79B" display_value="Light Orange" />
  </UserPref> 
  <UserPref name="mycolor_cust" display_name="  OR Use Custom Color (#xxxxxx)" default_value=""/>
  <UserPref name="boxcolor" display_name="Select Gadgets Color From Dropdown" default_value="White" datatype="enum" >
    <EnumValue value="White" />
    <EnumValue value="#F0F0FF" display_value="Light Blue" />
    <EnumValue value="#CCFFCC" display_value="Light Green" />
    <EnumValue value="#FF66CC" display_value="Light Purple" />
    <EnumValue value="#FF99FF" display_value="Light Pink" />
    <EnumValue value="#FFCC99" display_value="Light Red" />
    <EnumValue value="#FFFFCC" display_value="Light Creme" />
    <EnumValue value="#FFFF99" display_value="Light Yellow" />
    <EnumValue value="#FFC79B" display_value="Light Orange" />
    <EnumValue value="#E9E9E9" display_value="Light Gray" />
  </UserPref> 
  <UserPref name="boxcolor_cust" display_name="  OR Use A Custom Color (#xxxxxx)" default_value=""/>
  <UserPref name="tabnum" display_name="Tab Number (which tab this gadget is on)" default_value="0" datatype="enum" >
    <EnumValue value="0" display_value="0" />
    <EnumValue value="1" display_value="1" />
    <EnumValue value="2" display_value="2" />
    <EnumValue value="3" display_value="3" />
    <EnumValue value="4" display_value="4" />
    <EnumValue value="5" display_value="5" />
    <EnumValue value="6" display_value="6" />
    <EnumValue value="7" display_value="7" />
    <EnumValue value="8" display_value="8" />
    <EnumValue value="9" display_value="9" />
    <EnumValue value="10" display_value="10" />
    <EnumValue value="11" display_value="11" />
    <EnumValue value="12" display_value="12" />
    <EnumValue value="13" display_value="13" />
    <EnumValue value="14" display_value="14" />
    <EnumValue value="15" display_value="15" />
  </UserPref> 
  <Content type="html-inline">
  <![CDATA[

    <h4>A tool to change the background and gadget box colors on iGoogle.</h4><small>From <a href="http://symbii.com/?src=ig">symbii.com</a></small>
    <script type="text/javascript">
    var prefs = new _IG_Prefs(__MODULE_ID__);

    _IG_RegisterOnloadHandler(function () {

      // Turn the iGoogle page background mycolor, and gadgets boxcolor.

var mycolor_cust = prefs.getString("mycolor_cust");
var boxcolor_cust = prefs.getString("boxcolor_cust");

var mycolor, boxcolor;

if(mycolor_cust=="") mycolor = prefs.getString("mycolor");
else mycolor = mycolor_cust;

if(boxcolor_cust=="") boxcolor = prefs.getString("boxcolor");
else boxcolor = boxcolor_cust;


document.body.style.backgroundColor=mycolor;
var tabtocolor=prefs.getString("tabnum");
if(document.getElementById('modules')) document.getElementById('modules').style.backgroundColor=mycolor;
//if(document.getElementById('tab0_view')) document.getElementById('tab0_view').style.backgroundColor=mycolor;

if(document.getElementById('tab'+tabtocolor+'_view')) document.getElementById('tab'+tabtocolor+'_view').style.backgroundColor=mycolor;

if(document.getElementById('t_1')) document.getElementById('t_1').style.backgroundColor=mycolor;

if(document.getElementById('m_1_b')) document.getElementById('m_1_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_2_b')) document.getElementById('m_2_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_3_b')) document.getElementById('m_3_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_4_b')) document.getElementById('m_4_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_5_b')) document.getElementById('m_5_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_6_b')) document.getElementById('m_6_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_7_b')) document.getElementById('m_7_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_8_b')) document.getElementById('m_8_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_9_b')) document.getElementById('m_9_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_10_b')) document.getElementById('m_10_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_11_b')) document.getElementById('m_11_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_12_b')) document.getElementById('m_12_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_13_b')) document.getElementById('m_13_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_14_b')) document.getElementById('m_14_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_15_b')) document.getElementById('m_15_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_16_b')) document.getElementById('m_16_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_17_b')) document.getElementById('m_17_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_18_b')) document.getElementById('m_18_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_19_b')) document.getElementById('m_19_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_20_b')) document.getElementById('m_20_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_21_b')) document.getElementById('m_21_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_22_b')) document.getElementById('m_22_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_23_b')) document.getElementById('m_23_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_24_b')) document.getElementById('m_24_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_25_b')) document.getElementById('m_25_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_26_b')) document.getElementById('m_26_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_27_b')) document.getElementById('m_27_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_28_b')) document.getElementById('m_28_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_29_b')) document.getElementById('m_29_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_30_b')) document.getElementById('m_30_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_31_b')) document.getElementById('m_31_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_32_b')) document.getElementById('m_32_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_33_b')) document.getElementById('m_33_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_34_b')) document.getElementById('m_34_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_35_b')) document.getElementById('m_35_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_36_b')) document.getElementById('m_36_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_37_b')) document.getElementById('m_37_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_38_b')) document.getElementById('m_38_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_39_b')) document.getElementById('m_39_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_40_b')) document.getElementById('m_40_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_41_b')) document.getElementById('m_41_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_42_b')) document.getElementById('m_42_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_43_b')) document.getElementById('m_43_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_44_b')) document.getElementById('m_44_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_45_b')) document.getElementById('m_45_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_46_b')) document.getElementById('m_46_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_47_b')) document.getElementById('m_47_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_48_b')) document.getElementById('m_48_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_49_b')) document.getElementById('m_49_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_50_b')) document.getElementById('m_50_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_51_b')) document.getElementById('m_51_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_52_b')) document.getElementById('m_52_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_53_b')) document.getElementById('m_53_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_54_b')) document.getElementById('m_54_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_55_b')) document.getElementById('m_55_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_56_b')) document.getElementById('m_56_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_57_b')) document.getElementById('m_57_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_58_b')) document.getElementById('m_58_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_59_b')) document.getElementById('m_59_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_60_b')) document.getElementById('m_60_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_61_b')) document.getElementById('m_61_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_62_b')) document.getElementById('m_62_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_63_b')) document.getElementById('m_63_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_64_b')) document.getElementById('m_64_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_65_b')) document.getElementById('m_65_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_66_b')) document.getElementById('m_66_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_67_b')) document.getElementById('m_67_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_68_b')) document.getElementById('m_68_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_69_b')) document.getElementById('m_69_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_70_b')) document.getElementById('m_70_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_71_b')) document.getElementById('m_71_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_72_b')) document.getElementById('m_72_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_73_b')) document.getElementById('m_73_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_74_b')) document.getElementById('m_74_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_75_b')) document.getElementById('m_75_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_76_b')) document.getElementById('m_76_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_77_b')) document.getElementById('m_77_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_78_b')) document.getElementById('m_78_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_79_b')) document.getElementById('m_79_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_80_b')) document.getElementById('m_80_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_81_b')) document.getElementById('m_81_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_82_b')) document.getElementById('m_82_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_83_b')) document.getElementById('m_83_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_84_b')) document.getElementById('m_84_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_85_b')) document.getElementById('m_85_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_86_b')) document.getElementById('m_86_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_87_b')) document.getElementById('m_87_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_88_b')) document.getElementById('m_88_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_89_b')) document.getElementById('m_89_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_90_b')) document.getElementById('m_90_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_91_b')) document.getElementById('m_91_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_92_b')) document.getElementById('m_92_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_93_b')) document.getElementById('m_93_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_94_b')) document.getElementById('m_94_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_95_b')) document.getElementById('m_95_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_96_b')) document.getElementById('m_96_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_97_b')) document.getElementById('m_97_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_98_b')) document.getElementById('m_98_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_99_b')) document.getElementById('m_99_b').style.backgroundColor=boxcolor;

if(document.getElementById('m_101_b')) document.getElementById('m_101_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_102_b')) document.getElementById('m_102_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_103_b')) document.getElementById('m_103_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_104_b')) document.getElementById('m_104_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_105_b')) document.getElementById('m_105_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_106_b')) document.getElementById('m_106_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_107_b')) document.getElementById('m_107_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_108_b')) document.getElementById('m_108_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_109_b')) document.getElementById('m_109_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_110_b')) document.getElementById('m_110_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_111_b')) document.getElementById('m_111_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_112_b')) document.getElementById('m_112_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_113_b')) document.getElementById('m_113_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_114_b')) document.getElementById('m_114_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_115_b')) document.getElementById('m_115_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_116_b')) document.getElementById('m_116_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_117_b')) document.getElementById('m_117_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_118_b')) document.getElementById('m_118_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_119_b')) document.getElementById('m_119_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_120_b')) document.getElementById('m_120_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_121_b')) document.getElementById('m_121_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_122_b')) document.getElementById('m_122_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_123_b')) document.getElementById('m_123_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_124_b')) document.getElementById('m_124_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_125_b')) document.getElementById('m_125_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_126_b')) document.getElementById('m_126_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_127_b')) document.getElementById('m_127_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_128_b')) document.getElementById('m_128_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_129_b')) document.getElementById('m_129_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_130_b')) document.getElementById('m_130_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_131_b')) document.getElementById('m_131_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_132_b')) document.getElementById('m_132_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_133_b')) document.getElementById('m_133_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_134_b')) document.getElementById('m_134_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_135_b')) document.getElementById('m_135_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_136_b')) document.getElementById('m_136_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_137_b')) document.getElementById('m_137_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_138_b')) document.getElementById('m_138_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_139_b')) document.getElementById('m_139_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_140_b')) document.getElementById('m_140_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_141_b')) document.getElementById('m_141_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_142_b')) document.getElementById('m_142_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_143_b')) document.getElementById('m_143_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_144_b')) document.getElementById('m_144_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_145_b')) document.getElementById('m_145_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_146_b')) document.getElementById('m_146_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_147_b')) document.getElementById('m_147_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_148_b')) document.getElementById('m_148_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_149_b')) document.getElementById('m_149_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_150_b')) document.getElementById('m_150_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_151_b')) document.getElementById('m_151_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_152_b')) document.getElementById('m_152_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_153_b')) document.getElementById('m_153_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_154_b')) document.getElementById('m_154_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_155_b')) document.getElementById('m_155_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_156_b')) document.getElementById('m_156_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_157_b')) document.getElementById('m_157_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_158_b')) document.getElementById('m_158_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_159_b')) document.getElementById('m_159_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_160_b')) document.getElementById('m_160_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_161_b')) document.getElementById('m_161_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_162_b')) document.getElementById('m_162_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_163_b')) document.getElementById('m_163_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_164_b')) document.getElementById('m_164_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_165_b')) document.getElementById('m_165_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_166_b')) document.getElementById('m_166_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_167_b')) document.getElementById('m_167_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_168_b')) document.getElementById('m_168_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_169_b')) document.getElementById('m_169_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_170_b')) document.getElementById('m_170_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_171_b')) document.getElementById('m_171_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_172_b')) document.getElementById('m_172_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_173_b')) document.getElementById('m_173_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_174_b')) document.getElementById('m_174_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_175_b')) document.getElementById('m_175_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_176_b')) document.getElementById('m_176_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_177_b')) document.getElementById('m_177_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_178_b')) document.getElementById('m_178_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_179_b')) document.getElementById('m_179_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_180_b')) document.getElementById('m_180_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_181_b')) document.getElementById('m_181_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_182_b')) document.getElementById('m_182_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_183_b')) document.getElementById('m_183_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_184_b')) document.getElementById('m_184_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_185_b')) document.getElementById('m_185_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_186_b')) document.getElementById('m_186_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_187_b')) document.getElementById('m_187_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_188_b')) document.getElementById('m_188_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_189_b')) document.getElementById('m_189_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_190_b')) document.getElementById('m_190_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_191_b')) document.getElementById('m_191_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_192_b')) document.getElementById('m_192_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_193_b')) document.getElementById('m_193_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_194_b')) document.getElementById('m_194_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_195_b')) document.getElementById('m_195_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_196_b')) document.getElementById('m_196_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_197_b')) document.getElementById('m_197_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_198_b')) document.getElementById('m_198_b').style.backgroundColor=boxcolor;
if(document.getElementById('m_199_b')) document.getElementById('m_199_b').style.backgroundColor=boxcolor;

if(document.getElementById('niraj_bookmarks')) document.getElementById('niraj_bookmarks').style.backgroundColor=boxcolor;
if(document.getElementById('container-46')) document.getElementById('container-46').style.backgroundColor=boxcolor;

if(document.getElementById('footerwrap')) document.getElementById('footerwrap').style.backgroundColor=boxcolor;
    });

    </script>

  ]]>
  </Content>
</Module> 