[rawr]
jQuery(document).ready(function(){ var origObject = new Array(); origObject["#videobox_1"] = jQuery('#videobox_1').html(); origObject["#videobox_2"] = jQuery('#videobox_2').html(); origObject["#videobox_3"] = jQuery('#videobox_3').html(); origObject["#videobox_4"] = jQuery('#videobox_4').html(); origObject["#videobox_5"] = jQuery('#videobox_5').html(); jQuery('ul > li > a').click(function(e){ e.preventDefault(); jQuery(this).parent().parent().find('li > a').css('color', '#691cff'); jQuery(this).css('color', '#ff84bf'); currVideo = jQuery.trim(jQuery(this).attr('href'));
jQuery(this).parent().parent().parent().find('div').addClass('hidden'); jQuery(this).parent().parent().parent().find('div').html("");
jQuery(this).parent().parent().parent().find('div' + currVideo).removeClass('hidden'); jQuery(this).parent().parent().parent().find('div' + currVideo).html(origObject[currVideo]);
}); });
[/rawr]