/* -----------------------------------------------------------------------------
 * 	Function: Thumb Rollovers
 * 	Purpose:  Update video info on hover
 * ---------------------------------------------------------------------------*/
$(document).ready(function(){
	
	var song1 = 'Cycles';
	var artist1 = 'Brendan Dane';
	var song2 = 'We Are Forever Girl';
	var artist2 = 'Craig DelBonis';
	var song3 = 'Play It By Ear';
	var artist3 = 'Blue Stash Remedy';

	$("body.videos li#thumb1 a").hover(
		function () {
			$('#tab').html('<h3>' + song1 + '</h3><p>Artist: ' + artist1 + '</p><p class="directions"><em>Select to view video</em></p>');
		},
		function () {
			$('#tab').html('<h3>Please select a video below to view and vote</h3>');
		}
	);

	$("body.videos li#thumb2 a").hover(
		function () {
			$('#tab').html('<h3>' + song2 + '</h3><p>Artist: ' + artist2 + '</p><p class="directions"><em>Select to view video</em></p>');
		},
		function () {
			$('#tab').html('<h3>Please select a video below to view and vote</h3>');
		}
	);

	$("body.videos li#thumb3 a").hover(
		function () {
			$('#tab').html('<h3>' + song3 + '</h3><p>Artist: ' + artist3 + '</p><p class="directions"><em>Select to view video</em></p>');
		},
		function () {
			$('#tab').html('<h3>Please select a video below to view and vote</h3>');
		}
	);
});

