$(document).ready(function(){
	
	// Open rel="new_window" links in new window
	
	$("a[rel=new_window]").attr( "target", "_blank" );

	// fancybox
	
	$("a.fb").fancybox({
		'frameWidth': 522,
		'frameHeight': 420,
		'overlayShow': true,
		'overlayOpacity': 0.3
	});
	
	$("div.delete_button a:first").click(function(){
		$(this).next().show();
		return(false);
	});
	
	// Fade out success messages

	function fade_out(){
		$("div.fadeout").fadeTo(1000, 0).slideUp();
	}
	
	if( $("div.fadeout").length ){
		setTimeout(fade_out, 2000);
	}
	
});