/*$(document).ready(function () {
	$('.Notifications').hide();
	$(".Notifications:eq(0)").slideDown("normal", function () {
        // use callee so don't have to name the function
		$(this).next().slideDown("normal", arguments.callee); 
	});
	//$(".Notifications").slideDown("normal");
});*/