$(document).ready(function(){
	
	// Open rel="new_window" links in new window
	
	$("a[rel=new_window]").attr( "target", "_blank" );

	// fancybox
	
	$(".fb").fancybox({
		'type': 'ajax',
		'autoDimensions': false,
		'width': 522,
		'height': 420
	});
	
	$("div.delete_button a:first").click(function(){
		$(this).next().show();
		return(false);
	});
	
	
	
});

