$(document).ready(function() { $('#slider').nivoSlider(); $(".playDiv").each(function() { $(this).hover(function() { $(this).find("div").first().addClass('playhover'); $(this).find("div").first().removeClass('play'); }, function() { $(this).find("div").first().addClass('play'); $(this).find("div").first().removeClass('playhover'); } ); }); $('#playVideo').on("click",function(e){ var videoHtml = $("#showVideoHtml"); var hWin = $(window).height()*0.8; var wWin = $(window).width()*0.8; videoHtml.find('embed').attr('width',wWin); videoHtml.find('embed').attr('height',hWin); videoHtml.find('object').attr('width',wWin); videoHtml.find('object').attr('height',hWin); var layHtml = $.layer({ type: 1, title: false, area: [wWin+'px', hWin+'px'], shade: [0.8,'#333'], page: { html: videoHtml.html() }, success: function(layerOrder){ } }); }); $('#infoDiv').find('img').each(function() { var parentDom = $(this).parent(); var parentWidth = parentDom.width(); var thisWidth = $(this).width(); if (thisWidth>parentWidth){ $(this).css('width','100%'); } }); });