$(document)
	.ready(
		function()
		{
			$('.celebrity .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);
					}
				);
					
			$('.celebrity .text')
				.hover(
					function()
					{
						$(this).find('a').css('color', '#015877');
						$(this).find('img').attr('src', resource_url + 'image/icon.arrow.hover.gif');
						$(this).parent().find('.date a').css('color', '#015877');	
					},
					function()
					{
						$(this).find('img').attr('src', resource_url + 'image/icon.arrow.gif');
						$(this).find('a').css('color', '#FFFFFF');
						$(this).parent().find('.date a').css('color', '#FFFFFF');
					}
				);
		}
	);
