/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function() {
  $('div.row.privacy').hide();
  $('a#privacy').toggle(function() {
		$('div.row.privacy').slideDown('slow');
	},
	function() {
		$('div.row.privacy').slideUp('fast');
	});
});
