/* this file contains javascript exclusive for the cwCMS modules*/




$(document).ready(function(){
$(function() {
 //  get all delete links (note the class i gave them in the html)
   $("a.delete-link").click(function() {
  //     basically, if confirm is true (ok button is pressed), then 
  //     the click event is permitted to continue, and the link will
  //    be followed - however, if the cancel is pressed, the click event will be stopped here
       return confirm($(this).attr("title"));
   });
});





});



