/**
	@author Angel Kostadinov (develop.bg)
	@copyright Toxic Media Ltd. 2009 (c) All Rights Reserved
	@version 1.0
	
	CMS BG is a trademark (TM) of Toxic Media Ltd.
	
	Scripts in this product are protected by copyright law.
	No part of any scripts may be reproduced in any form or by any means, 
	electronic or otherwise, without written permission from the copyright owner Toxic Media Ltd.
*/
(function($) 
{
	$.fn.animateNestification = function(options) 
	{
		/* Plugin options*/
		var defaults = 
		{
			effect: 'slideDown',
			speed: 200
		};
		
		var options = $.extend({}, defaults, options);

	    return this.each(function() 
	    {	
	    	switch(options.effect)
	    	{
	    		case 'slideUp':
	    			$(this).slideUp(options.speed);
	    			break;
	    		case 'slideDown':
	    			$(this).slideDown(options.speed);
	    			break;
	    		case 'fadeIn':
	    			$(this).fadeIn(options.speed);
	    			break;
	    		case 'fadeOut':
	    			$(this).fadeOut(options.speed);
	    			break;	
	    	}
	    });
	}; 
})(jQuery);
