$(document).ready(function() {

	jQuery.fx.interval = 20;

	$(function(){
		$(".youtube").mb_YTPlayer();
	});

	$('#facebook, #v, #youtube').hover( function() {
		$(this).stop().animate({
			top : '25px'
		}, 200 )
	},
	function() {
		$(this).stop().animate({
			top : '28px'
		}, 400 )
	}
	);

});

