// JavaScript Document
// alerts for functions

$(document).ready(function(){
						   
	$(".imageDelete").click(function(){
		var c = confirm("Are you sure you want to Delete this Image?");
		if(c){
			return true;
		} else {
			return false;
		}
	})
	
	$(".productDelete").click(function(){
		var c = confirm("Are you sure you want to Delete this Product?");
		if(c){
			return true;
		} else {
			return false;
		}
	})
	
	$(".itemDelete").click(function(){
		var c = confirm("Are you sure you want to Delete this Item?");
		if(c){
			return true;
		} else {
			return false;
		}
	})
	
})
