$(document)
	.ready(
		function()
		{
			$('.event .image-container')
				.hover(
					function()
					{
						$(this).find('.overlay').show();
					},
					function()
					{
						$(this).find('.overlay').hide();
					}
				
				)
				.click(
					function()
					{
						var link  	= $(this).parents('a').attr('href');
							redirect(link, true);
					}
				);
					
			$('.event .description')
				.hover(
					function()
					{
						$(this).find('a').css('color', '#015877');
						$(this).find('img').attr('src', resource_url + 'image/icon.arrow.big.hover.gif');
							
					},
					function()
					{
						$(this).find('img').attr('src', resource_url + 'image/icon.arrow.big.gif');
						$(this).find('a').css('color', '#FFFFFF');
					}
				);
		}
	);

