// JavaScript Document
//create div row link for browse event page
jQuery(document).ready(function(){
   jQuery("div.divLink").click(function(){
      window.location = jQuery(this).attr("href");

   });
});
