﻿function changetab(count){
    var x=document.getElementsByTagName("img");
    for (var i=1;i<x.length;i++){
		if (x[i].id.indexOf('tab')>-1){
		    var theid = x[i].id
		    var o = document.getElementById(theid);

            o.onmouseover = function(){
                 $(this.id).src = $(this.id).src.replace('/off/','/roll/');
            }
            o.onmousedown = function(){
                turnthemoff(count);
                $(this.id).src = $(this.id).src.replace('/roll/','/on/');
                $(this.id.replace('tab','content')).style.display = 'block';
            }
            o.onmouseout = function(){
                 $(this.id).src = $(this.id).src.replace('/roll/','/off/');
            }
        }
    }
}

function turnthemoff(count){
    for (var i=1;i<count+1;i++){
        if ($('tab'+i)){
            $('tab'+i).src = $('tab'+i).src.replace('/on/','/off/');
            $('content'+i).style.display = 'none';
        }
    }
}