$(document).ready( function(){
	$("p.banner a").bind('mouseover focus', function() {
		$(this).stop(true, false).animate({
			opacity: 0.7
		}, 300, 'swing', false);
	}).bind('mouseout blur', function() {
		$(this).stop(true, false).animate({
			opacity: 1
		}, 300, 'swing', false);
	});
});

