// No-Select
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

// Status Bar
var scrollCounter = 0;
var scrollText    = ":: www.areebonline.com ::          :: A Website about me and my Mindsets ::          :: Designed by Areeb ::" 
var scrollDelay   = 80;
var i = 0;
while (i ++ < 130)
scrollText = " " + scrollText;
function Scroller()
{
window.status = scrollText.substring(scrollCounter++, 
scrollText.length);
if (scrollCounter == scrollText.length)  
scrollCounter = 0;
setTimeout("Scroller()", scrollDelay);
}
Scroller();

// Updates
var update = "29th January, 2006";
var visitor = "350";
var initial = "5th January, 2006";