/* File: js/event.js, Ratio: 19.5% */

$(document).ready(function(){$('.eventBox td a').live('mouseover mouseout',function(event){$pre=$(this).next('div[class*=preview]');if($pre.length>0){if(event.type=='mouseover'){$pre.show();}else{$pre.hide();}}});$('.eventBox .cycleMonth').live('click',function(){$(this).closest('.eventBox').ajaxReplace($(this).attr('href'));return false;});});
