/*
*
*
*	TeenLit javascript code
*	Written by Dan Cahoon
*	2010
*
*
*/

$(document).ready(function()
{
	
	$(".tab").click(function(event)
	{
		event.preventDefault();
		window.location = $(this).find("a").attr("href");
	})

})
