/*
  zoom of video window and magic window in tbd
  
*/

$(document).ready(function(){
  jQuery("div#videoteaser").mouseover(function(){
   
    $("#embedplayer1").css({ width: 320, height : 240 });
    $("div#videoteaser").css({ top : -135 });
    $("p#videoplayer1").css({ width : 400 });
  });
  $("#mob_frame").mouseover(function(){
    $("#embedmagic").css({ width : 320, height : 60, bottom:0 });
  });
  // video is shrinked when pointed to navigation:
  // video is also shrinked when pointed to "magic of brazil" button:
  $("#navigation ul").mouseover(function() {
    $("#embedplayer1").css({ width : 167, height : 90 });
    $("div#videoteaser").css({ top :0 });
    $("p#videoplayer1").css({ width : 167 });
  });
  // "magic of brazil" is shrinked when
  // - on navigation
  // - impressum link
  $("#navigation ul,#fuss a").mouseover(function() {
    $("#embedmagic").css({ width: 167, height : 30, bottom:0 });
  });
});

