// update layer content with the output of given url
function loadSomeInfo(url, layer_id){
  $.post(url, {},
    function(response){
      //confirm($(layer_id).length)
      $(layer_id).html(response)
      //confirm($(layer_id).html())
    }
  )
}

$(document).ready(function(){
  $(".openblank").fancybox({
    'padding'		: 0,
    'width'  		: 1200,
    'height'  		: 900,
    'autoScale'		: 'false',
    'transitionIn'	: 'elastic',
	'transitionOut'	: 'elastic',
    'type'			: 'iframe'
  });
  $(".openrefresh").fancybox({
    'padding'		: 0,
    'width'  		: 1200,
    'height'  		: 900,
    'autoScale'		: 'false',
    'transitionIn'	: 'elastic',
	'transitionOut'	: 'elastic',
    'type'			: 'iframe',
    'onClosed'		: function(){ document.location.href = document.location.href }
  });
  $("#grabber").fancybox({
    'padding'		: 0,
    'width'			: 1000,
    'height'		: 750,
    'autoScale'		: 'false',
    'transitionIn'	: 'elastic',
	'transitionOut'	: 'elastic',
    'type'			: 'iframe',
    'onClosed'		: function(){ document.location.href = document.location.href }
  });
  $("#tabs").tabs({
    fxFade: true,
    fxSpeed: 'fast'
  });

});
