function confirmationpd() {
	conf = confirm("This will delete the selected item, are you sure you want to continue?");
	if (conf) {
		return true;
	} else {
		return false;
	}
}

function roll(img_name, img_src) {
	$("#"+img_name).attr("src", img_src);
}

jQuery(document).ready(function() {
    jQuery("a[ href ^= '#' ]").each(function() {
        var href = window.location + jQuery(this).attr('href').replace('/#.*/i','');
        jQuery(this).attr('href',href);
    });
});

