$().ready(function() {
	/* 
		Add the hover class to the "li" tag in the right column 
		This is needed b/c IE6 does not support CSS hover class on
		anything but an a tag
	*/
	$('#rightColumn ul li').hover(
		function(){
			$(this).addClass('hover');
		},
		function(){
			$(this).removeClass('hover');
		}
	);
	
	/* 
		Hide the text compoent of the "a" tag in the image displays 
		This could be done using CSS but can potentially cause search engines to ignore
		text inside hidden spans
	*/
	$('#rightColumn ul li a span').css('display','none');
	
	$('#rightColumn ul li').unbind('click').bind('click',
     function(){
       var href = $(this).find('a')[0].href;
       window.location = href;
       return false;
     }
   )

} );