$(document).ready(function(){	
	$('#action-fake').hover(function(){
			i=0;
			$('#action').css('background', 'url("/images/carousel/active.png") no-repeat scroll 0 0 transparent');
			
			
			$('#circular_3 img').each(function(){
				
					if($(this).css('display')!='none'){
						i++;
						
					}	
					if(i==3){
						$('#subtext-carousel').html($(this).attr('alt'));
						$('#action-fake').attr('href', $(this).attr('longdesc'))
					}
						
						
			});
	}, function(){
			$('#action').css('background', 'none');
			$('#subtext-carousel').html('');
			$('#action-fake').attr('href', '#')
	});
});  
