$(document).ready(function(){
	
	$(".vidBtn").click(function(){
		var whatBand = $(this).attr("alt");
		var whatVideo = $(this).attr("title");
		var theVideo = "#" + whatBand + whatVideo;
		var theVideoDiv = "#" + whatBand + "Vid";
		
		//alert ("#" + whatBand + whatVideo);
		//alert ("the video = " + theVideo);
		//alert ("the video div = " + theVideoDiv);
		
		//$(theVideoDiv).attr('style', 'border: 1px solid #f00');
    $(theVideoDiv).load("/artist_videos/video.html " + theVideo);
  });
	
	
	
	/*
	$(".bandBtn").click(function(){
		$("#bandList h4").removeClass("ulh4").addClass("noBgImg");
		$(this).addClass("ulh4");
		
		var theBand = $(this).attr("title");
		//var theVideoDiv = "#" + theBand ;
		//alert (theBand)
    $("#bandContainer").load("/video-artist.html #" + theBand);
  });
	*/
		
});
