//Main Tabs
var iniTab;
iniTab = '1';
                    // Function which actually swaps tabs
					function changeColoredTab (tabname) {
                    document.getElementById('tab_1').style.display = 'none';
                    document.getElementById('tab_2').style.display = 'none';
                    document.getElementById('tab_3').style.display = 'none';
                    document.getElementById('tab_4').style.display = 'none';
		    //document.getElementById('tab_5').style.display = 'none';
                    document.getElementById('tab_6').style.display = 'none';
                    document.getElementById('tab_'+tabname).style.display = 'block';
                    document.getElementById('tabnav_1').src = 'http://img.sports-lines.net/images/quicktour/1_off.gif';
                    document.getElementById('tabnav_2').src = 'http://img.sports-lines.net/images/quicktour/2_off.gif';
                    document.getElementById('tabnav_3').src = 'http://img.sports-lines.net/images/quicktour/3_off.gif';
                    document.getElementById('tabnav_4').src = 'http://img.sports-lines.net/images/quicktour/4_off.gif';
                    //document.getElementById('tabnav_5').src = 'http://img.sports-lines.net/images/quicktour/5_off.gif';
                    document.getElementById('tabnav_6').src = 'http://img.sports-lines.net/images/quicktour/6_off.gif';
					document.getElementById('tabnav_'+tabname).src = 'http://img.sports-lines.net/images/quicktour/'+tabname+'_on.gif';
                    }
                    -->

