$(document).ready(function() {

	//Add Fade in class
	$('.globalnavigation li a').append ('<span class="hover"></span>');
	//On hover, fade the yellow image in
	$('.globalnavigation li a').hover (function() {
	
		//Stuff that happens when you hover on
		$('.hover', this).stop().animate({
		'opacity': 1
		},700, 'easeOutExpo');
	
	}, function() {
	
		//Stuff that happens when you unhover
		$('.hover', this).stop().animate({
		'opacity': 0
		},700, 'easeOutExpo');
	
	});
	
	//Add the right border to every other logo
	$('#partners li:even').css('border-right', '1px dotted #161616');

});
