Just a gray day
click to go to orange
$("#my1").click(function(){
$(this).fadeOut("slow");
$("#my2").fadeIn("slow");
return false;
});
Just an orangy kinda day
click to go back to gray
$("#my2").click(function(){
$(this).fadeOut("slow");
$("#my1").fadeIn("slow");
return false;
});