/**
* @name debughover.js
* @copyright (c) 2011 Sebastian Eiweleit
* @license Don't share, modify, sell or make it public.
* @support sebastian@sebastian-eiweleit.de
**/

jQuery(document).ready(function(){

	
	
	$('a.confirm').click(function(e){
		e.preventDefault();
		if(confirm('Wirklich "'+$(this).html()+'" löschen?')){
			location.href = $(this).attr('href');
		}else{
			return false;			
		}
	});

	
});
		


