
	$(document).ready(function(){
	
		
		$('a.download').click(function() {
			
			if($('#annual_report').val() == 'year') return false;
			
			$(this).attr("href", $("select#annual_report").val());
			
		});
		
		
		$('#annual_report').change(function() {
		
			if($(this).val() == 'year') $('#size-doc').text('');
			$('#size-doc').text($(this).children('option:selected').attr('name'));
			
		});		
		
		
		$('a.docfile').mouseover(function() {
				
			$(this).next("strong").show();
			
		});
		
		$('a.docfile').mouseout(function() {
				
			$(this).next("strong").hide();
			
		});
		
		
		
	});

