function ToggleData(e) {
	$(".ToggleData").hide();
	$(e).fadeIn('fast');
}


$("#IndexViewMenu").click(function () {
	alert('in');
      $("#kwick").fadeIn("slow");
    });


$("#IndexViewPicture").click(function () {
	alert('out');
      $("#kwick").fadeOut("slow");
    });
