/* delete confirm */
function confirm_delete(itemID, category){
	var OK = confirm("Delete this data?");

	if((category == 'produk') && (OK == true)){
		var winCategory = window.location='http://thesouthmerapi.com/index.php/produk/delete/'+itemID;
	}
	else if((category != '') && (OK == true)){
		var winCategory = window.location='./delete/'+itemID;
	}
}
/* jquery */
function animate(id)
{
	$('#'+id).animate({ opacity : 'toggle' }, 'slow');
}
function toggle(id)
{
	$('#'+id).toggle();
}
function hide(id)
{
	$('#'+id).hide();
}
function slide(id)
{
	$('#'+id).slideToggle();
}
