function swapArrow(oObject) {
	if(oObject.id == "liover") {
		oObject.id = "linormal"
	}else{
		oObject.id = "liover"
	}
}
function swapButton(oObject) {
	if(oObject.src == "http://sherwoodgardenfeatures.dev/images/add-to-cart.png") {
		oObject.src = "http://sherwoodgardenfeatures.dev/images/add-to-cart_purple.png"
	}else{
		oObject.src = "http://sherwoodgardenfeatures.dev/images/add-to-cart.png"
	}
}

function del_item(id) {
	
	if (confirm('Are you sure you wish to delete this item?')) {
		
		window.location = '?act=cart&did=' + id;
		
	}
}
function preview(pic) {
	
		window.open('preview.php?pic=' + pic, '_blank', 'height=700, width=687');	
}