$(document).ready(init);

function init(){
	$("#videos div").hide();
	$("#videos li").toggle(
		function(){
		   $(this).next("div").show();
		   },
		function(){
		   $(this).next("div").hide();
		   }
	   )
}
