$(document).ready(function(){
$("#thumbnails img[title]").tooltip({
// place tooltip on the right edge
position: "center right",
// a little tweaking of the position
offset: [-2, 10],
// use the built-in fadeIn/fadeOut effect
effect: "fade",
// custom opacity setting
opacity: 0.7
});
$('#thumbnails div[id]').addClass("main a:link");
$('#thumbnails div[id]').hover(
function () {
$(this).removeClass("main a:link");
$(this).addClass("tooltip");
$(this).addClass("tooltip a:link");
},
function () {
$(this).removeClass("tooltip");
$(this).removeClass("tooltip a:link");
$(this).addClass("main a:link");
}
);
});
function changevideo(name)
{
var x = "";
switch(name)
{
case 'doug':
x = "http://www.youtube.com/embed/zd6UlNMVqJI?rel=0";
break;
case 'glen':
x = "http://www.youtube.com/embed/6YduMZJxLVk?rel=0";
break;
case 'greg':
x = "http://www.youtube.com/embed/8rzjmiU_xWA?rel=0";
break;
case 'miles':
x = "http://www.youtube.com/embed/EmxqVX3Dlsk?rel=0";
break;
case 'travis':
x = "http://www.youtube.com/embed/O9Y6ydDgJ78?rel=0";
break;
default:
x = "http://www.youtube.com/embed/clsaeSvbJpU?rel=0";
}
var player = document.getElementById('videoplayer');
player.src = x;
}