$(document).ready( function() {
	
	$('#sidebar div.annex div.states-select span').click(function(){
		$('#sidebar div.annex div.states-select div').toggleClass("open");
		return false;
	});
	
	$("#block-americans-2 a").each(function() {
		if($(this).attr('rel') == 'no follow')
		{	
			$(this).attr('target', '_blank');
		}
	});
	
	$("#block-americans-1 a").each(function() {
		if($(this).attr('rel') == 'no follow')
		{	
			$(this).attr('target', '_blank');
		}
	});

	$('#print_this_page').click(function(){
		window.print();
		return false;
	});

});