var popupBox;
$(document).ready(function(){
	popupBox = new fadeBox();
});
      
function openPopup(img, w, h) {
	var boxContent = '<img src="' + img + '" width="' + w + '" height="' + h + '" />';
	popupBox.content(boxContent).show();
}
function closePopup() {
	popupBox.hide();
}
