/**
 * @author David Kelly (http://www.ambientage.com)
 * @version 0.1
 * Nov. 2009
 */

$(document).ready(function(){
	
	/**
	 * Big clickable area on the award categories:
	 */
	$('div.award-category ').mouseover(function(){
		$(this).css({backgroundColor: '#efefef', cursor: 'pointer'});
		$(this).attr('title', 'See more about ' + $(this).find('h3').text());
	}).mouseout(function(){
		$(this).css({backgroundColor: 'transparent', cursor: 'normal'});
		$(this).remove('title');
	}).click(function(){
		window.location = $(this).find('a').attr('href');
	});
	
});
