/* iphone/ipad intercept */
var deviceAgent = navigator.userAgent.toLowerCase(),
isIPad = deviceAgent.match(/(ipad)/),
isIPhone = deviceAgent.match(/(iphone|ipod)/),
isdroidPhone = deviceAgent.match(/(android)/);
//cvpReady = false;
$(document).ready(function() {
if (isIPad) {
if($.cookie('iosint') != "yes"){ // if cookie doesnt exist show overlay
var vheight = document.documentElement["scrollHeight"];
vheight = vheight + 94;
$("<div id='ios-intercept'></div>").appendTo("body");
$("<div class='img-v-wrap'></div>").appendTo("body");
$(".img-v-wrap").height(vheight);
$("#ios-intercept").load("/includes/mobile-intercept.jsp", function(){
$(".img-v-wrap").slideDown(function(){
$("#iPadWrap").fadeIn('slow');
});
});
}
} 
});
