$(document).ready(function() {
	
	if($.support.opacity) {	
		$('.winwin-logo').hover(function() {
			$('a', this).stop(true, true).animate({ opacity: 1.0 }, 300);
		}, function() {
			$('a', this).stop(true, true).animate({ opacity: 0 }, 300);
		});
	}
	

});
