$(function(){

	$(".videoflicker").click(function(){
		$(".video div").hide();
		$($(this).attr('href')).show();
		$($(this).attr('href') + " div").show();
		return false;
	});
	
	$(".tabswitch").click(function(){
		$(".tabswrap div").hide();
		$($(this).attr('href')).show();
		$($(this).attr('href') + " div").show();
		$("ul.tabs a").removeClass('active');
		$($(this)).addClass('active');
		return false;
	});
/*

	$(".footertab").click(function(){
		$(".footerwrapper div").hide();
		$($(this).attr('href')).show();
		$($(this).attr('href') + " div").show();
		$("ul.footernav a").removeClass('active');
		$($(this)).addClass('active');
		return false;
	});
*/


});

