/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function fadeOut(id){
  $('#'+id).fadeOut('fast');
}

function fadeIn(id){
  $('#'+id).fadeIn('fast');
}

function fb_resize(w, h) {
  var animation_speed = 200;
  if (w > 0 || h > 0) {
    //if (w > 0) $('#fancybox-wrap', window.parent.document).css({ width: w+"px"});
    //if (w > 0) $('#fancybox-content', window.parent.document).css({ width: w+"px"});
    //if (h > 0) $('#fancybox-content', window.parent.document).css({ height: h+"px"});
    //parent.$.fancybox.resize();
    $('#fancybox-content', window.parent.document).animate({
      height: h+'px'
    }, animation_speed);
  }
}
