/* hide first */

function video_tabs(){
	var panels = $(".video_module");
	panels.hide();
	panels.eq(0).show().attr("id", "ac_video_panel_selected").before("<div class=\"xg_module_head\" style=\"margin-bottom: 0;\" id=\"ac_video_list\"><ul id=\"ac_tab_video\"><li id=\"ac_tab_selected\"><a href=\"#\">Featured Videos</a></li><li><a href=\"#\">Most Recent</a></li><li><a href=\"#\">Highest Rated</a></li></ul></div>");
	$("#ac_tab_video li a").each(function(i){
		$(this).click(function(){
			$("#ac_tab_selected").removeAttr("id");
			$(this).parent().attr("id", "ac_tab_selected");
			$(".video_module")
			$("#ac_video_panel_selected").hide().removeAttr("id");
			$(".video_module").eq(i).show().attr("id","ac_video_panel_selected");
			return false;
		});
	});
}