var JSCalenderLinks = {
    init: function(cssSelector) {
        jQuery.noConflict();
        jQuery(document).ready(function() {
            jQuery(cssSelector).click(function() {
                document.location.href = document.location.href.substring(0, document.location.href.indexOf("#")) + "#" +jQuery(this).attr("id");
            });
        });
	}
};
JSEvent.addEvent(window, 'load', function(){JSCalenderLinks.init("table.calender-listing tbody tr");});
