$(document).ready(function(){
$(“.inline”).colorbox({inline:true, width:”75%”});
$(“.videoModal”).click(function() {
var w = “750px”; var h = “456px”;
if ($(document).width() < 750) { w=”100%”
}
if ($(document).height() < 456) { h=”100%”
}
$.colorbox({
href: “http://www.youtube.com/embed/dhNlVRb9EFQ”,
width:w,
height:h,
iframe:true
});
});
});