<!--
 var tab1Imgs = new Array();
 var tab2Imgs = new Array();
 var blnTab1Active = true;
 $(document).ready(function() {
   initTabs();
    $("#imgTab1").hover(
      function () {
        if(blnTab1Active) 
		{
			$(this).attr({ src: tab1Imgs[1] });
		}
		else
		{
			$(this).attr({ src: tab1Imgs[0] });
		}
      }, 
      function () {
        if(blnTab1Active) 
		{
			$(this).attr({ src: tab1Imgs[0] });
		}
		else
		{
			$(this).attr({ src: tab1Imgs[1] });
		}
      }
    ); 
    $("#imgTab2").hover(
      function () {
        if(blnTab1Active) 
		{
			$(this).attr({ src: tab2Imgs[0] });
		}
		else
		{
			$(this).attr({ src: tab2Imgs[1] });
		}
      }, 
      function () {
        if(blnTab1Active) 
		{
			$(this).attr({ src: tab2Imgs[1] });
		}
		else
		{
			$(this).attr({ src: tab2Imgs[0] });
		}
      }
    );   
	
 });
function initTabs()
{
 var strPath = 'images/';
 var strEnd = '_' + strLang + '.gif';
 tab1Imgs[0] = strPath + 'bt_tab1_on' + strEnd;
 tab1Imgs[1] = strPath + 'bt_tab1_off' + strEnd;
 tab2Imgs[0] = strPath + 'bt_tab2_on' + strEnd;
 tab2Imgs[1] = strPath + 'bt_tab2_off' + strEnd;
 var tab1Off = new Image();
 tab1Off.src = tab1Imgs[1];
 var tab2On = new Image();
 tab2On.src = tab2Imgs[0];
    $("#imgTab1").click(function () {
      $("#imgTab1").attr({ src: tab1Imgs[0] });
      $("#imgTab2").attr({ src: tab2Imgs[1] });  
      $("#tab2").hide("slow");
      $("#tab1").slideDown("slow");
      blnTab1Active = true;
    });
    $("#imgTab2").click(function () {
      $("#imgTab1").attr({ src: tab1Imgs[1] });
      $("#imgTab2").attr({ src: tab2Imgs[0] });
      $("#tab1").hide("slow");
      $("#tab2").slideDown("slow");
      blnTab1Active = false;
    });
  $("#imgTab1").click(); 
}
//-->

