// JavaScript Document

// Reduces the Opacity of the region
// images on the "Explore Programs" Page
// of the Education Abroad section


        $(function() {
            $('ul#ea_regions li').animate({"opacity": .75 });

            $('ul#ea_regions li').hover(function() {
                $(this).stop().animate({ "opacity": 1 });
            }, function() {
                $(this).stop().animate({ "opacity": .75 });
            });
        });






$(function() {
$('#content_main ul.zebra li:even').css("background" , "#DFF2F5");
});


$(function() {
$('ul#ea_results li ul li:odd').css("background" , "#DFF2F5");
});

$(function() {
$('#content a[href$=DOC]').append(' (DOC)');
$('#content a[href$=doc]').append(' (DOC)');
$('#content a[href$=pdf]').append(' (PDF)');
});

$(function() {
	$('a[title="external"]').attr('target', '_blank');
});