﻿// base.js
$(document).ready(function() {
	$('a[rel^=media] img').bind('mouseenter', function() {
		$(this).animate({'opacity': 0.25}, 75, '', function() {
			$(this).animate({'opacity': 1}, 250);
		});
	});
});
