var title_index = 0;
function changeTitle (element) {
    var titles = ["This is a picture"
                 ,"Really, it doesn't go anywhere"
                 ,"don't click this"
                 ,"You think you can just click anything?"
                 ,"Do you do this at home?"
                 ,"It's really not what you think"
                 ];
    idx = title_index % titles.length;
    element.title = titles[idx];
    title_index++;
}
var noclick_count = 0;
function notALink () {
    if (++noclick_count >= 3) {
        window.open("http://www.youtube.com/results?q=cats&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a&um=1&hl=en&bav=on.2,or.r_gc.r_pw.&biw=1261&bih=788&ie=UTF-8&sa=N&tab=v1");
    }
}
