// JavaScript Document

$(document).ready(function(){
	//analytics tracking for downloads
	$('#celebNav a').each(function(e)
	{
		thishref = $(this).attr('href');
	   	if (document.location.href.indexOf(thishref) !== -1)
		{
			 //alert('hello');
			 $(this).addClass('active');
		}
	});		
});
