function popup( movieurl, width, height, title ) {
  $("#popup").remove();
  var str = '<div id="popup"><a class="close"><span>close</span></a>'
  +'<table><tr><td class="cell1x1"></td><td class="cell1x2"><h1>'+title+'</h1></td><td class="cell1x3"></td></tr>'
  +'<tr><td class="cell2x1"></td><td class="cell2x2" style="width:'+width+'px; height:'+height+'px;">'
  +'<iframe src="'+movieurl+'" name="video" scrolling="no" frameborder="0" width="'+width+'" height="'+height+'"/>'
  +'</td><td class="cell2x3"></td></tr><tr><td class="cell3x1"></td><td class="cell3x2"></td><td class="cell3x3"></td></tr>'
  +'</table></div>';
  $('body').append( str );
  $('#popup a.close').click( function() { $('#popup').remove(); } );
  var leftpos = (document.body.offsetWidth - width - 73 - 48 ) / 2;
  $('#popup').css({left: leftpos});
  return false;
}

$(document).ready(function(){
  $('#tap ul li').hover(
    function() { $(this).children('.bubble').fadeIn('fast'); },
    function() { $(this).children('.bubble').fadeOut('fast'); }
  );
  $('#services > ul > li').hover(
    function() { $( '.'+this.className+' .box' ).show(); },
    function() { $( '.'+this.className+' .box' ).hide();	}
  );
  $('.brands li a').hover(function() {
    $(this).children('span.hover').stop().animate({height:119}, 200);
  }, function() {
    $(this).children('span.hover').stop().animate({height:0}, 200);
  });
});
