jQuery(document).ready(function($){
  $('a[rel*=facebox]').facebox();
  $('a[rel*="popup"]').bind('click', function(){
  	var data = $(this).attr('data');
  	data = eval("("+data+")");
  	window.open($(this).attr('href'), $(this).attr('title'), 'width='+data.width+',height='+data.height+',menubar=0,resizable=0' );
  	return false;
  });
});

