jQuery(function($) {
	$('.section-title').width($('.section-title h2').width() + 80);
});



function OpenNewWindow(url,winwidth,winheight)
{
NewWindow=window.open(url,'Event','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+winwidth+',height='+winheight+',left='+(screen.width-winwidth)/2+',top='+(screen.height-winheight)/2+',');
NewWindow.focus();
}