here is my script for the timer...
$(document).ready(function() {
$('#timer').stopwatch().bind('tick.stopwatch', function(e, elapsed) {
if (elapsed <= 5000) {
$("timer");
}
else if(elapsed <= 10000) {
$("#timer").css("background", "orange");
}
else {
$("#timer").css("background", "red");
}
}).stopwatch('start') ;
});
Thanks,