$(document).ready(function($) {
	$('#events_tab_container').delay(3000).removeClass('opened')
	$('#events_tab_container').delay(3000).animate({width:"-=332"},1000);
	
	$('#tab_headline').click(function() {
		if ($('#events_tab_container').css('width') !='356px' && !$('#events_tab_container').hasClass('opened')){
			$('#events_tab_container').animate({width:"+=332"},500);
			$('#events_tab_container').addClass('opened');
		} 
		else if ($('#events_tab_container').hasClass('opened')){
			$('#events_tab_container').animate({width:"-=332"},500);
			$('#events_tab_container').removeClass('opened');
		}
	});
});