$(function() {
         $('.smallimage div.selectorDiv').each(function(){
                $(this).Tooltip({
                                track: true,
                                delay: 0,
                                showURL: false,
                                opacity: 1,
                                fixPNG: true,
                                showBody: " - ",
                                extraClass: "pretty",
                                top: 20,
                                left: 5
                        });
        })
});


function switchAroo(number){
	for(i = 0; i < 25; i++){
		var id = 'bigimage' + i;
		if(document.getElementById(id)){
			if(i==number){
				document.getElementById(id).style.display = 'block';
			}else{
				document.getElementById(id).style.display = 'none';
			}
		}else{
			i=26;
		}
	}
}