var category = "";
var path = window.location.pathname;

if( path.match("^/EN/COMPANY/") ){ category = "company"; }
else if( path.match("^/EN/IR/") ){ category = "ir" }
else if( path.match("stock_performance_en") ){ category = "ir" }
else if( path.match("^/EN/NEWS/") ){ category = "news" }
else if( path.match("^/EN/SOCIALCONTRIBUTION/") ){ category = "social" }
else if( path.match("^/EN/NISSANCRAFTSMANSHIP/") ){ category = "craftsmanship" }
else if( path.match("^/EN/OURBRANDS/") ){ category = "ourbrands" }
else if( path.match("^/EN/ENVIRONMENT/") ){ category = "environment" }
else if( path.match("^/EN/SAFETY/") ){ category = "safety" }
else if( path.match("^/EN/CITIZENSHIP/") ){ category = "citizenship" }
else if( path.match("^/EN/SPORTS/") ){ category = "sports" }
else if( path.match("^/EN/DESIGN/") ){ category = "design" }
else if( path.match("^/EN/TECHNOLOGY/") ){ category = "technology" }
else if( path.match("^/EN/QUALITY/") ){ category = "quality" }
else if( path.match("^/EN/(index.html)?$") ){ category = "top" }

var related_info = "";
var nissan_channel = "";
var extra_info = "";
var count = 0;

/*-------------------------*/


function related(){
  $.ajax({
    url: "/EN/SHARED/INCLUDE/related-info_"+category+".html",
    dataType: "html",
    success: function(html){
      if(!( path.match("^/EN/(index.html)?$") || path.match("^/EN/COMPANY/(index.html)?$") || path.match("/EN/NEWS/") || path.match("^/EN/IR/(index.html)?$") || path.match("^/EN/ENVIRONMENT/(index.html)?$") || path.match("^/EN/SAFETY/(index.html)?$") || path.match("^/EN/CITIZENSHIP/(index.html)?$") || path.match("^/EN/SPORTS/(index.html)?$") || path.match("^/EN/DESIGN/(index.html)?$") || path.match("^/EN/TECHNOLOGY/(index.html)?$") || path.match("^/EN/QUALITY/(index.html)?$") )){
        $("#content").append(html);
      }
      channel();
    }
  });
}

function channel(){
  $.ajax({
    url: "/EN/SHARED/INCLUDE/nissan-channel.html",
    dataType: "html",
    success: function(html){
      if(!( path.match("/EN/IR/") || path.match("/EN/SOCIALCONTRIBUTION/") || path.match("/EN/NISSANCRAFTSMANSHIP/") || path.match("/EN/OURBRANDS/") )){
        $("#content").append(html);
      }
      extra();
    }
  });
}

function extra(){
  $.ajax({
    url: "/EN/SHARED/INCLUDE/extra-info_"+category+".html",
    dataType: "html",
    success: function(html){
      $("#content").append(html);
      $.set_links({
        ".rss" : { width:550, height: 550, toolbar: "no", scrollbars: "yes", status: "yes" ,directories: "no", menubar: "no", resizable: "yes" },
        ".popup" : { width:550, height: 550, toolbar: "no", scrollbars: "no", status: "yes" ,directories: "no", menubar: "no", resizable: "yes" }
      });
			$('#extraInfo ul.linkList > li:last-child').addClass('lastChild');
    }
  });
}

if($.browser.msie){ addLoadEvent(related); }
else{ related(); }

function addLoadEvent(func) {
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	}
	else {
		window.onload = function() {
			oldonload();
			func();
		}
	}
}