// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
flash_appear = function() {
    var flash = $('notice');
    if (flash) {
        Effect.Appear(flash, {to: 0.8});
        setTimeout("Effect.Fade('notice')", 5800);
        setTimeout("window.location='http://www.sjahermandaughter.com/backgrounds'", 6000);
    }
}

function total(a){
  var total = 0;
  for(var i=0; i < parseInt(a); i++){
    total += parseInt($('target_price_'+ i).innerHTML);
  }  
  $('target_total').innerHTML = total+ '.0';
//alert($().innerHTML());
}