﻿$(document).ready(function () {
    if (isMobileSafari()) {
        $("body").css("position", "absolute");  //iOS messes up the render order, without this you get an ugly grey bar
        $(".productVideoHtml iframe").attr("height", $(".productVideoHtml iframe").attr("height") / 2); //Mobile iOS doubles frame height for inexplcable reasons
    }
    if (isAndroid()) {
        $(".productVideoHtml iframe").attr("height", $(".productVideoHtml iframe").attr("height") / 2); //Mobile Android also doubles frame height for inexplcable reasons
    }
});

function isMobileSafari() {
    return (navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1);
}

function isAndroid() {
    return (navigator.userAgent.indexOf('android') != -1 || (navigator.userAgent.indexOf('Android') != -1));
}
