<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_nbGroup(event, grpName) { //v3.0
  var i,img,nbArr,args=MM_nbGroup.arguments;
  if (event == "init" && args.length > 2) {
    if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
      img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
      if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
      nbArr[nbArr.length] = img;
      for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
        if (!img.MM_up) img.MM_up = img.src;
        img.src = img.MM_dn = args[i+1];
        nbArr[nbArr.length] = img;
    } }
  } else if (event == "over") {
    document.MM_nbOver = nbArr = new Array();
    for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
      if (!img.MM_up) img.MM_up = img.src;
      img.src = (img.MM_dn && args[i+2]) ? args[i+2] : args[i+1];
      nbArr[nbArr.length] = img;
    }
  } else if (event == "out" ) {
    for (i=0; i < document.MM_nbOver.length; i++) {
      img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
  } else if (event == "down") {
    if ((nbArr = document[grpName]) != null)
      for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
    document[grpName] = nbArr = new Array();
    for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
      if (!img.MM_up) img.MM_up = img.src;
      img.src = img.MM_dn = args[i+1];
      nbArr[nbArr.length] = img;
  } }
}

function MM_showHideLayers() { //v3.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
    obj.visibility=v; }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// version of library
LCB_version = 2.8;
// _mac : true = macintosh, false = other os
_mac=navigator.userAgent.indexOf('Mac')!=-1;
// _ie512 : true = MSIE 5.12(mac), false = others
_ie512=navigator.userAgent.indexOf('MSIE 5.12')!=-1;
_opera=navigator.userAgent.indexOf('Opera')!=-1;
// _dom : kind of DOM.
//        IE4 = 1, IE5+ = 2, NN4 = 3, NN6+ = 4, others = 0
_dom = document.all?(document.getElementById?2:1)
                   :(document.getElementById?4
                   :(document.layers?3:0));
_createLayerNo = 0;                    // layer no.

function getWindowWidth(){
  if(_dom==4 || _dom==3) return window.innerWidth;
  if(_dom==2 || _dom==1) {
  	  if(document.compatMode == "CSS1Compat") {return document.documentElement.clientWidth;}
  	  else {return document.body.clientWidth;}
  	}
  return 0;
}

function getWindowHeight(){
  if(_dom==4 || _dom==3) return window.innerHeight;
  if(_dom==2 || _dom==1) {
  	  if(document.compatMode == "CSS1Compat") {return document.documentElement.clientHeight;}
  	  else {return document.body.clientHeight;}
  	}
  return 0;
}

function setDivVisibility(div,visible){
  if(_dom==4 || _dom==2 || _dom==1){
    div.style.visibility=(visible)?'inherit':'hidden';
    return;
  }
  if(_dom==3){
    div.visibility      =(visible)?'inherit':'hide';
    return;
  }
}

function getWinXOffset(){
  if(_dom==4)            return window.scrollX;
  if(_dom==2 || _dom==1) {
  	  if(document.compatMode == "CSS1Compat") {return document.documentElement.scrollLeft;}
  	  else {return document.body.scrollLeft;}
  }
  if(_dom==3)            return window.pageXOffset;
  return 0;
}

function getWinYOffset(){
  if(_dom==4)            return window.scrollY;
  if(_dom==2 || _dom==1) {
  	  if(document.compatMode == "CSS1Compat") {return document.documentElement.scrollTop;}
  	  else {return document.body.scrollTop;}
  	 }
  if(_dom==3)            return window.pageYOffset;
  return 0;
}

function getDivFromName(nm){
  if(_dom==4 || _dom==2) return document.getElementById(nm);
  if(_dom==1)            return document.all(nm);
  if(_dom==3){
    var s='';
    for(var i=1; i<arguments.length; i++)
      s+='document.layers.'+arguments[i]+'.';
    return eval(s+'document.layers.'+nm);
  }
  return null;
}

function moveDivTo(div,left,top){
  if(_dom==4){
    div.style.left=left+'px';
    div.style.top =top +'px';
    return;
  }
  if(_dom==2 || _dom==1){
    div.style.pixelLeft=left;
    div.style.pixelTop =top;
    return;
  }
  if(_dom==3){
    div.moveTo(left,top);
    return;
  }
}

function initDivPos(div){
  if(_dom==4){
    div.style.left=div.offsetLeft+'px';
    div.style.top =div.offsetTop +'px';
  } else if(_dom==2 || _dom==1){
    div.style.pixelLeft=div.offsetLeft;
    div.style.pixelTop =div.offsetTop;
  }
  return div;
}


function ImageChange(id){
if(document.getElementById)OBJIMG = document.getElementById(id+'b').src;
if(OBJIMG) document.getElementById(id+'b').src='http://www.brandstreet.jp/citroen/pic/'+id+'-b_f2.gif';
}
function GlobalImageChange(id){
if(document.getElementById)OBJIMG = document.getElementById(id+'b').src;
if(OBJIMG) document.getElementById(id+'b').src='http://www.brandstreet.jp/common/global-'+id+'-b_f2.gif';
}

function DisplayLayers(id){
if(document.getElementById)OBJ = document.getElementById(id).style;
if(OBJ) OBJ.display=='none'?OBJ.display='':OBJ.display='none';
}

function NoneLayers(id){
if(document.getElementById)OBJ = document.getElementById(id).style;
OBJ.display='none';
}
function BlockLayers(id){
if(document.getElementById)OBJ = document.getElementById(id).style;
OBJ.display='';
}



function ShowHideMenu() {
  var i,width,args=ShowHideMenu.arguments;

	width = getWindowWidth();

	if(width<940) {
		for(i=0;i<(args.length); i++) NoneLayers(args[i]);
	} else {
		for(i=0;i<(args.length); i++) BlockLayers(args[i]);
	}
}

function display_image(){

var img1="<a href=\"news/20060821_1/index.html\"><img src=\"/audi2006common/topimage_1.jpg\" width=\"639\" height=\"300\" alt=\"image\"><\/a>";
var img2="<a href=\"newcar/tt/index.html\"><img src=\"/audi2006common/topimage_2.jpg\" width=\"639\" height=\"300\" alt=\"image\"><\/a>";
var img3="<a href=\"newcar/a6_allroadquattro/index.html\"><img src=\"/audi2006common/topimage_3.jpg\" width=\"639\" height=\"300\" alt=\"image\"><\/a>";

var iValue = Math.random() * 3;
var rNumber = Math.ceil(iValue);
if(rNumber == 0){rNumber++};

document.write(eval("img" + rNumber))
}

function ImageOpen(theURL) {
	ImageOpenWindow(theURL);
}

function ImageOpenWindow(theURL,winName,features) {
if(!winName){winName = "photo";}
if(!features){features = "scrollbars=1,resizable=1,width=720,height=600";}




      imgWindow = window.open("",winName,features);
      imgWindow.document.close();
      imgWindow.document.open;
      imgWindow.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n");
      imgWindow.document.write("       \"http://www.w3.org/TR/html4/loose.dtd\">\n");
      imgWindow.document.write("<html lang=\"ja\" class=\"smallwindow\">\n");
      imgWindow.document.write("<head>\n");
      imgWindow.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Shift_JIS\">\n");
      imgWindow.document.write("<meta http-equiv=\"Content-Language\" Content=\"ja\">\n");
      imgWindow.document.write("<title>Photo</title>\n");
      imgWindow.document.write("<meta name=\"copyright\" content=\"Copyright(c) WHITEHOUSE Co., Ltd. All rights reserved.\">\n");
      imgWindow.document.write("<meta http-equiv=\"Content-Script-Type\" content=\"text/javascript\">\n");
      imgWindow.document.write("<meta http-equiv=\"Content-Style-Type\" content=\"text/css\">\n");
      imgWindow.document.write("<link rel=\"stylesheet\" media=\"screen,print\" href=\"common/dummy.css\" type=\"text/css\">");
      imgWindow.document.write("<script type=\"text/javascript\">");
      imgWindow.document.write("<!--\n");
      imgWindow.document.write("self.window.focus()\;\n");
      imgWindow.document.write("//-->\n");
	  imgWindow.document.write("</script>\n");
      imgWindow.document.write("</head>\n");
      imgWindow.document.write("<body class=\"smallwindow\">\n");
      imgWindow.document.write("<h1>Photo</h1>\n");
      imgWindow.document.write("<div id=\"photo\">\n");
      imgWindow.document.write("<img src=\"" + theURL + "\"></div>\n");
      imgWindow.document.write("<div id=\"closewindow\"><a href=\"javascript:window.close();\">Close Window</a></div>\n");
      imgWindow.document.write("</body>\n");
      imgWindow.document.write("</html>");
      imgWindow.document.close();
}


var pulldownmenuTimer;
MM_preloadImages('/citroen/pic/news-b_f2.gif','/citroen/pic/products-b_f2.gif','/citroen/pic/approved-b_f2.gif','/citroen/pic/location-b_f2.gif','/citroen/pic/community-b_f2.gif')

//-->