$(document).ready(function() {
  Shadowbox.init({
    troubleElements: ["select","object","embed"]
  });
 
  Shadowbox.setup('#getstarted', {
    player: "iframe",
    title: "",
    height: 600,
    width: 800
  });
  
  // trigger opening the promotion popup box
  $('a.promotion').click(function(){
  	Shadowbox.open({
  		width: 800,
  		height: 600,
  		player: 'inline',
  		content: this.href
  	});
  });
});

