﻿$(document).ready(function(){
	$("button.button-add-vods").click(function () {
    	$("form.add_vods").toggle("normal");
	});


	$("#show_latest_vods").click(function () {
    	$("#latest_vods").toggle("normal");
	});


	$("#adminh").click(function () {
    	$("#admin").toggle("normal");
	});



});
