function clickBox(){
	$('.click_box').each(function(){
		$(this).append('<a class=\"stretched\" href=\"'+$(this).find('a:first').attr('href') +'\" title=\"'+$(this).find('a:first').attr('title') +'\"></a>');
	});
}

$(document).ready(function() {
	clickBox();
	
	$('#awards li').hover( function () {
		$(this).find('a.top, a.bottom').animate({
			opacity: 0.3
		}, 250 );
	}, function() {
		$('a.bottom').animate({
			opacity: 0.5
		}, 250 );
		$('a.top').animate({
			opacity: 1
		}, 250 );
	});
	
	$('#awards li').mousedown( function () {
		$(this).find('a.top, a.bottom').animate({
			opacity: 0
		}, 200 );
	});
	
	$('#awards li').mouseup( function () {
		$(this).find(' a.bottom').animate({
			opacity: 0.5
		}, 350 );
		$(this).find('a.top').animate({
			opacity: 1
		}, 350 );
	});

});
