$(function() {
	
    $("#tabs").tabs();
    
	$('#gallery a').lightBox();
	
	$("a[rel='extern']").click(function(){
      window.open(this.href);
      return false;
    });

});

function getWinWidth() {
  if (window.innerWidth) {
    return window.innerWidth;
  } else if (document.body.clientWidth) {
    return document.body.clientWidth;
  } else {
    return 1600;
  }
}
