/*  */ 
 
 
/*  */ 
$(document).ready(function() {


	var glow = $('#current_events h1.live_now');
	var eUrl = glow.next().attr('href');
	glow.wrapInner('<a href="'+ eUrl +'" />').css('cursor','pointer');

	$('#current_events a').hover(function(){		
		$('#current_events h1').html('<a href="'+ eUrl +'">View</a>');
	}, function(){
		$('#current_events h1').html('<a href="'+ eUrl +'">Live Now</a>');
	});
	
	setInterval(function(){
		glow.animate({
		    opacity: 0.7,
		  }, 800, function() {
		    $(this).animate({
				opacity: 1
				}, 800);
		});
	}, 1600);
	
});

 
 

