Yesterday, when coming home early, I noticed the flowers were carpeting the ground. Hmmm… I couldn’t think of any reason why because it’s still in early Spring. Today, I found out that this bird pecked the flowers and drank the fluid from the nectar. Just like hummingbirds. Except hummingbirds would keep the flowers intact [...]
For chị TT! Without you, there is no flower!
For the first time in my life, I was so excited to see this flower (I did not know there is such thing as Spanish Moss Flower before!)
Can you see the tiny flower?
I was desperately trying to save these guys, and finally they are coming back! Slowly… but hey, what’s the point?
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
var message=”Function Disabled!”;
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function(”alert(message);return false”)
// –>