/* CLIQUE */
/* Event Callout Pattern Javascript
----------------------------------------------------------------------------- */


	$(window).load(function() {

		$('div#sidebar div.widget-event.program.callout ul.events li a.date strong').each(function() {
			
			var year = $(this).text().replace(', 2008','').replace(', 2009','').replace(', 2010','').replace(', 2011','').replace(', 2012','');
			$(this).text(year);

		});
		
		$('div.widget-event.program.callout ul.events li').each(function() {
	
			var date = $(this).children('a.date').children('strong').text();
			$(this).children('h4').children('a').children('strong').prepend(date + ' / ');
			$(this).children('a.date').remove();
		
		});

	});
