$(document).ready(function(){ handleClicks(); }); function handleClicks() { var vf = $('#videoframe'); $("#video1").click(function(){showVideo('stanton1'); return false;}); $("#video2").click(function(){showVideo('stanton2'); return false;}); $("#video3").click(function(){showVideo('stanton3'); return false;}); $("#video4").click(function(){showVideo('stanton4'); return false;}); $("#video5").click(function(){showVideo('stanton5'); return false;}); $("#video6").click(function(){showVideo('stanton6'); return false;}); $("#video7").click(function(){showVideo('stanton7'); return false;}); $("#video8").click(function(){showVideo('stanton8'); return false;}); $("#video9").click(function(){showVideo('stanton-sommer1'); return false;}); $("#video10").click(function(){showVideo('stanton-sommer2'); return false;}); $("#video11").click(function(){showVideo('stanton-sommer3'); return false;}); $("#video12").click(function(){showVideo('stanton-sommer4'); return false;}); $("#video13").click(function(){showVideo('stanton-sommer5'); return false;}); $("#video14").click(function(){showVideo('stanton-sommer6'); return false;}); $("#video15").click(function(){showVideo('stanton9'); return false;}); $("#video16").click(function(){showVideo('stanton10'); return false;}); function showVideo(video) { vf.html(getVideoCode(video)); } } function getVideoCode(video) { var code = ''+ ''+ ''+ ''+ ''; return code; }