function cart_notify(message1, message2, new_mini_cart_total)
{
	
	$("body").prepend('<div id="notify_added_to_cart"><div id="notify_border"><div id="notify_box">'+message1+'</div><div id="notify_sub_message">'+message2+'</div></div></div>');
	$("#notify_added_to_cart").animate({'top' : '77px'}, 950, "easeOutElastic", 
									   
			   function(){
					$("#add_button").html(addButtonHTML); // addButtonHTML: products.view
					$(this).delay(680).animate({'top' : '-300px'}, 400, "easeInBack", 
											   function(){ 
											   $("body").remove("#notify_added_to_cart"); 
											   if (new_mini_cart_total) {
													$("#cart_small").replaceWith('<div id="cart_small">'+new_mini_cart_total+' <a href="/cart/">View Cart</a></div>');
											   }		   
											   }); 
				}
	);
}

