$(document).ready(function() {
var clicked = false;
$('#pirate').remove();
$('body').addClass('gradient');
$('#toggle').click(function(){
if (!clicked){
$('#status').html("GO").css("background-color","green");
$('this').html("Stop");
clicked = true;
} else { $('#status').html("STOP").css("background-color","red");
$("this").html("Start");
clicked = false;
}
$('#status').mouseenter('#cat');
});
});
$(document).ready(function() {
$("#pirate").remove();
$("body").addClass("gradient");
var clicked=false;
$("#toggle").click(function(){
if (clicked == false){
$("#status").html("GO").css("background-color","green");
$("#toggle").html("Stop");
clicked=true;}
else { $("#status").html("STOP").css("background-color","red");
$("#toggle").html("Start");
clicked=false;
}
});
$("#status").mouseenter(function(){
if (clicked==true){
$("#cat").show();
}
});
$("#status").mouseleave(function(){
if (clicked==true){
$("#cat").hide();
clicked=true;
}
});
});