$(document).ready(function() {
	var $tabs = $('#tabvanilla > ul').tabs();
	
	$('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	$('#featuredvid > ul').tabs();
	
	$('.goToEntertainment').click(function() { // bind click event to link
			$tabs.tabs('select', 4); // switch to third tab
			return false;
	});
	
});
