function breatheIn() {
$('#bg1').animate({opacity:"1.0"}, 3200);
}
function breatheOut() {
$('#bg1').animate({opacity:"0.0"}, 6400);
}
stop:
function stopBr() {
$("#bg1").stop().fadeOut(1200);
}
A second call doesn't work:
<a href="#" onclick="breathe();">restart</a>
also tried onclick="breatheIn(); breathe()".
Missing something here... any pointers?