/* options.js */
$(document).ready(function() {
// initialize
$("#btn-vote").live("click", function() {
	$("#bd-vote").dialog("open");
	
});
$(".bd-add-motion").live( "click",  function() {
	var buttonme = $(this);
	// $(".wrap-motion-vote:visible").slideUp();
	$(".motion-vote:first").clone().appendTo("#bd-vote-content").fadeIn(500).children(".wrap-motion-vote").slideToggle().parent().effect("highlight", {}, 1000);
	return false;
});
$(".take-a-vote").live( "click",  function() {
	$(this).hide();
	$(this).parent().siblings(".votes, .final-resolution").slideDown(500);
	return false;
});
$(".delete-motion-vote").live( "click",  function() {
	$(this).parent().parent().fadeOut(500);
	return false;
});
$(".show-hide").live( "click",  function() {
	$(this).parent().siblings(".wrap-motion-vote").slideToggle();
	return false;
});
});
