
$(document).ready(function(){

   if (jQuery.browser.msie/* && jQuery.browser.version == 6*/){
        $('#sunflower .items li a').hover(
            function(){
                $(this).addClass('hover');
            },
            function(){
                $(this).removeClass('hover');
            }
        );
    }
});
function mailto_link_color(){
var links = document.getElementsByTagName ("a");
//alert(links.length);
  // Check through all the links
  for (var l=0; l<links.length; l++) {
    // Assume some vars
    var link = links[l];
    var rela = "internal";
    var icon = "web";
    var scur = false;
    // Skip the link?
    if (link.className) {
      var clss = link.className.toString ();
    }
    if (!link.href) {
      continue;
    }
    // Figure out the link relativity and "non-webby" icons
    switch (link.protocol.toLowerCase ()) {
      // EMail links first
      case "mailto:":
          // Get the addy
           var reg=/^mailto:(.*)$/;
          var mail = reg.exec(link.href);
          if (mail!=null) {
            link.className = "cblue";
          }
        
        break;
      // All other protocols are "external"
      default:
        break;
    }
}
}  

        
            


