// JavaScript Document

$(function() {
	$('<p><strong>All examples open in a single new window.</strong></p>').insertAfter('h2+p');
	$('a.demo').click(function(event) {
	  var url = event.target.href;
	  var demo = window.open(url, 'demo', 'height=600,width=800,left=20,top=20,resizable,scrollbars');
	  demo.focus();
	  return false;
	});
});
