/*----------------------------------------------------------------
[jquery.topProductAnimate.js]

Project					:		Wildcraft
Version					:		1.1
Last change				:		10/17/09 []
Author					:		Ranjoy Sen
Primary use				:		Plugin for home page bottom product animation
Dependency 				:		jquery-1.3.2.min_.js,
								jquery.easing.1.3.js
------------------------------------------------------------------*/
(
	function($)
	{  
		$.fn.bottomProductAnimate = function(e) 
		{  
			return this.each
			(
				function() 
				{  
					$(this)
						.animate
						(
							{ 
								marginTop			:	-170
							}, 
							{
								duration: 'slow',
								easing: 'easeInOutElastic', 
								complete: 
								function () 
								{
									$(e)
										.animate
										(
											{ 
												marginTop			:	10
											}, 
											{
												duration: 'slow',
												easing: 'easeInOutElastic', 
												complete: 
												function () 
												{
													//
												}
											}
										);
								}
							}
						);
				}
			);  
 		};  
 	}
 )(jQuery);  
