jQuery.noConflict();

jQuery(function()
{
   jQuery('#quick_links').mousemove(function()
   {
       document.getElementById("quick_links").style.pixelWidth = 160;
   });

   jQuery('#quick_links').blur(function()
   {
       document.getElementById("quick_links").style.pixelWidth = 82;
   });

   jQuery('#modTemplateChangerSelect').mousemove(function()
   {
       document.getElementById("modTemplateChangerSelect").style.pixelWidth = 160;
   });

   jQuery('#modTemplateChangerSelect').blur(function()
   {
       document.getElementById("modTemplateChangerSelect").style.pixelWidth = 115;
   });
}
)