var Local = {

    onCommentReply: function(id) {
		Comments.openReply(id);
	},

    onCancelReply: function(id) {
		Comments.closeReply();
	}

};

(function() {

var $ = jQuery

$(document).ready(function() {
	$('dd.showhide').css({display: 'none'});
	
    $('.toggleme').toggle(
            function() {
                var slideid = $(this).attr('id');
                $('#showhide' + slideid).slideDown();
                document.getElementById("expand_" + slideid).innerHTML = "contract -";
            },
            function() {
                var slideid = $(this).attr('id');
                $('#showhide' + slideid).slideUp();
                document.getElementById("expand_" + slideid).innerHTML = "expand +";
    		}
            );
    
    
});


$(document).ready(function() {

$('a.media').media();
});


})();
