$(document).ready(function() {

        /* carousel popup teaser */
    $('#mycarousel a').livequery('click', function (){
       xhref = $(this).attr("href"); 
       
       testFilmName1=/(.*)#popup/;
       tmp1 = xhref.match(testFilmName1);

       testFilmName2=/(.*)#xpopup820/;
       tmp2 = xhref.match(testFilmName2);

       testFilmName3=/film=(.*).flv/;
       tmp3 = xhref.match(testFilmName3);

       
       if(tmp1){
         if(tmp1[1]){
            popWinMedia = window.open(xhref, 'popup', "width=700,height=700,fullscreen=no,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes,titlebar=yes");
            popWinMedia.focus();
         }
       }
       else if(tmp2){
         if(tmp2[1]){
            popWinMedia = window.open(xhref, 'popup', "width=820,height=630,fullscreen=no,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes,titlebar=yes");
            popWinMedia.focus();
         }
       }
       else if(tmp3){
         if(tmp3[1]){
            openMediacenter('/index.php?id=702&film=' + tmp3[1] + '.flv');
         }
       }
       else{
          location.href = xhref;
       }

     return false;       
    });

});
