$(document).ready(function(){

	$('a[href^="http://"]').not('a[href^="http://student.aisforawards.org"]').attr("target", "_blank");
	
	
	if ($('#commendation').length>0)
	{
							
		commendationImages = $('#commendation img');
					
		i=0;
					
		commendationImages.each(function(){
					
			$(this).attr("width", 510).css("margin-bottom", "18px");
						
			if (i!=0)
			{
				$(this).attr("width", 510).css("margin-top", "18px");
			}
						
			i++;
					
			});
				
		}

});