//<script>
$(document).ready(
  function(){   
    if($("#messageBox").length > 0 && $("#messageBox").text().length > 5){
      $("#messageBox").show();  
    }
       
    if($("#newFeaturesHome").length > 0){
    
      //this flashes the light bulb many times.
      $(document).everyTime(800, function(){
        var image = $("#newFeaturesBulb").css('background-image');
        
        if(image.search("off") != -1){
          $("#newFeaturesBulb").css('background-image', 'url(http://www.mytareas.com/beta/images/bulb_sml2_on.png)');  
        }
        if(image.search("on") != -1){
          $("#newFeaturesBulb").css('background-image', 'url(http://www.mytareas.com/beta/images/bulb_sml2_off.png)');  
        }
        //alert(image.search("off")); // -1 if not found
        //alert($("#newFeaturesBulb").css('background-image'));
      }); 
    }
  }
);
