$(document).ready(function() {
	var $tabs = $('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	$('#featuredvid > ul').tabs();
	$('#itemsHolder a').click(function() {
		var re = new RegExp('^\#');
		var href = $(this).attr('href');
		if (href.match(re)) {
			$('html, body').animate({scrollTop:0}, 'fast');						
			$tabs.animate({opacity: 1}, 5000).tabs('select', href);
			return false;
		} 
	});	
});

