var the_timeout;
var locatie;

function wSize() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement &&
      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  var latime=myWidth;
  var calcul=(latime-1024)/2 +37;
  if (calcul<0) {
  calcul=0-calcul;
  }
  
  //alert(calcul);
	//document.write('<DIV id=divContainer1 style="Z-INDEX: 1; TOP: 410px; LEFT: '+calcul+'px; CLIP: rect(0px 455px 180px 0px); POSITION: absolute;HEIGHT:185px;">');
return(calcul);
}

function doAjaxPage(pgLoad){
	//alert("bla");
	$('.content').load(pgLoad);
	alert("bla");
}

var J = jQuery.noConflict();

	function go(id, file){

		J(id).load(file);

		}


