
$(function() {

// load right background image according to screen resolution
<!--
if (screen.width>1680)
{document.body.style.background="url(../images/layout/bkg_1920.jpg)  no-repeat "}
else if (screen.width>1440){
 document.body.style.background="url(../images/layout/bkg_1680.jpg)  no-repeat "}
else if (screen.width>1280){
 document.body.style.background="url(../images/layout/bkg_1440.jpg)  no-repeat "}
else{
document.body.style.background="url(../images/layout/bkg_1280.jpg)  no-repeat "}
//-->

// swap img according to menu entry
var myimg = $("#globalnav li").index( $('.currentpage')[0] );

$("#img-"+myimg).removeClass('nav');
$("#img-"+myimg).addClass('current');

 // hide all of the elements with a class of 'toggle'
  $('.nav').hide();
  
  $("#globalnav li").mouseover(function () {
      var index = $("li").index(this);
	  $("#img-"+myimg).hide();
         $("#img-"+index).show();
	  
    });
	$("#globalnav li").mouseout(function () {
          var index = $("li").index(this);
           $("#img-"+index).hide();
	   $("#img-"+myimg).show();
    });

// TABS
		$("#tabs").tabs();
		
		
});

