$(document).ready(function() {
	$('#tabvanilla > ul').tabs({ fx: { opacity: 'toggle' } });
	$('#featuredvid > ul').tabs();
	
	$('input.buttons').hover(function() {
			$(this).css('background-position','0 -22px');
		},
		function() {
			$(this).css('background-position','0 0');
		}
	);

});

