$(document).ready(function(){
	
	var videofeed = $("#launch_modal_video_window").attr("class");
	//alert("FEED: "+ videofeed);
	$(".highlight").hover(function() {
		$(this).attr("src",$(this).attr("src").replace('off','on'));
}, function() {
			$(this).attr("src",$(this).attr("src").replace('on','off'));
	});
	
	$("#launch_modal_video_window").click(function (e) {
		e.preventDefault();
		
		$("#modal_live_video").empty().append('<iframe src="http://www.nba.com/'+videofeed+'/" style="border-width:0;margin:5px;" width="576" height="350" frameborder="0" scrolling="no" top="100" left="200"></iframe><p>You are watching a live video feed from courtside at TD Garden in Boston, MA. <a href="#" class="simplemodal-close">Close Window</a></p>');
		$("#modal_live_video").modal({position: [170,200]});
	});
	
});
