﻿var HomePage = { init: function () { $("#home_callouts #four a").click(function (a) { a.preventDefault(); HomePage.CreateVideoPlayer("swf_commercial") }) }, CreateVideoPlayer: function (a) { $("#video-box").append('<iframe src="flash/dialogplayer.aspx?key=' + a + '" style="width: 586px; height: 431px; border: none; overflow: hidden;" frameBorder="0" scrolling="no" allowTransparency="true"></iframe>'); $("#video-box").dialog({ modal: true, alterTabFocus: false, width: 586, height: 431, resizable: false, autoOpen: true, closeOnEscape: true, closeText: "Close", zIndex: 5000, beforeClose: function (c, b) { HomePage.CleanDialog(c, b) } }) }, CleanDialog: function (b, a) { $("#video-box iframe").remove(); return } }; $(document).ready(HomePage.init);
