// Effects for Sleek admin skin
$(function(){
		$("div.notice span").click(function() {  // Whenever someone clicks the litte X on the notice message do the following
			$('div.notice').fadeOut('slow');     // Fade out the whole paragraph
			$('div.notice span').hide('fast');   // And hide the X 
		});
		$("div.info span").click(function() {
			$('div.info').fadeOut('slow');
			$('div.info span').hide('fast');
		});
		$("div.success span").click(function() {
			$('div.success').fadeOut('slow');
			$('div.success span').hide('fast');
		});
		$("div.error span").click(function() {
			$('div.error').fadeOut('slow');
			$('div.error span').hide('fast');
		});
		$("div.todoitem a.close").click(function() { // Whenever someone clicks on a the X in a To-do item do this:
			$(this).hide('fast');				   // Hide the X - FAST!
			$(this).parent().slideUp('slow');      // Slide Up the to-do item.
		});	
});

