$(function(){
	$(".rightsContinue").click(function() {
		$(this).parent().parent().hide();

		$(".rightsOptions").each(function(i) {
			$(this).show();
		});
		
		return false;
	});

	$(".rightsOptions").click(function() {
		$(this).children("div").slideToggle();
		$(this).children("img").toggle();
	});
});
