$(function (){ 
	$('#accordion').find('.content').hide();
	$("#accordion h2").click(function () {
          	$(this).next("div.content").slideToggle(400).siblings("div.content:visible").slideUp(200);
          });
});

function SharePopup (c) {
   window.open(c,'window', 'width=1000,height=450,scrollbars=yes,status=no,top=100,left=100');
}

