$(document).ready(function() {	

$('#youtube li a').hover(function() {
	
		// Stuff that happens when you hover on
		$('.hover', this).stop().animate({
			'opacity': 1
			}, 700)
	
	},function() {
	
		// Stuff that happens when you unhover
		$('.hover', this).stop().animate({
			'opacity': 0
			}, 700)
	
	})
	
});//Close Function
