// JavaScript Document
$(document).ready(function() { 
	$("a.delete_man").click(function() {
		man_id = $(this).parent().parent().attr('id');
		if (confirm("Are you sure you want to delete this manufacturer? It cannot be undone!")){
			window.location='admin.php?del='+man_id;
		}
		return false;
	}); 
	$("a.delete_news").click(function() {
		news_id = $(this).parent().parent().attr('id');
		if (confirm("Are you sure you want to delete this news item? It cannot be undone!")){
			window.location='adminnews.php?del='+news_id;
		}
		return false;
	}); 
	$("a.delete_associate").click(function() {
		associate_id = $(this).parent().parent().attr('id');
		if (confirm("Are you sure you want to delete this associate? It cannot be undone!")){
			window.location='adminassociates.php?del='+associate_id;
		}
		return false;
	}); 
});
