jQuery(document).ready(function(){
	jQuery(".glidecontent").hover(function() {
		jQuery(this).children(".glidemeta").animate({opacity: "show"}, "slow");
	}, function() {
		jQuery(this).children(".glidemeta").animate({opacity: "hide"}, "fast");
	});
});

jQuery(document).ready(function() {
	jQuery('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' }});
	jQuery('#featuredvid > ul').tabs();
});

