function dom_init($) {

//  if(post == 0) $('.newsletter').hide();
// $('a.newsletterb').click(function(){$('.newsletter').slideToggle();});
//  $('#collapse p').slideUp();
    
    $('#collapse h3').mouseover(function(){
        if($(this).parent().children('p').is(':hidden')){
            $(this).parent().parent().parent().find('p').slideUp();
            $(this).parent().children('p').slideDown();
        }
    });
	

}




